-- MySQL dump 10.13  Distrib 5.7.44, for Linux (x86_64)
--
-- Host: localhost    Database: websitex_WPDGU
-- ------------------------------------------------------
-- Server version	5.7.44-cll-lve

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `ajj_ce4wp_contacts`
--

DROP TABLE IF EXISTS `ajj_ce4wp_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_ce4wp_contacts` (
  `contact_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `last_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `telephone` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `consent` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_ce4wp_contacts`
--

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

--
-- Table structure for table `ajj_commentmeta`
--

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

--
-- Dumping data for table `ajj_commentmeta`
--

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

--
-- Table structure for table `ajj_comments`
--

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

--
-- Dumping data for table `ajj_comments`
--

LOCK TABLES `ajj_comments` WRITE;
/*!40000 ALTER TABLE `ajj_comments` DISABLE KEYS */;
INSERT INTO `ajj_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-09-07 01:48:25','2023-09-07 01:48:25','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `ajj_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_e_events`
--

DROP TABLE IF EXISTS `ajj_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_e_events`
--

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

--
-- Table structure for table `ajj_e_submissions`
--

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

--
-- Dumping data for table `ajj_e_submissions`
--

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

--
-- Table structure for table `ajj_e_submissions_actions_log`
--

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

--
-- Dumping data for table `ajj_e_submissions_actions_log`
--

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

--
-- Table structure for table `ajj_e_submissions_values`
--

DROP TABLE IF EXISTS `ajj_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_e_submissions_values`
--

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

--
-- Table structure for table `ajj_jetpack_sync_queue`
--

DROP TABLE IF EXISTS `ajj_jetpack_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_jetpack_sync_queue` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `queue_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_payload` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`),
  KEY `event_id` (`event_id`),
  KEY `queue_id` (`queue_id`),
  KEY `queue_id_event_id` (`queue_id`,`event_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_jetpack_sync_queue`
--

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

--
-- Table structure for table `ajj_links`
--

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

--
-- Dumping data for table `ajj_links`
--

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

--
-- Table structure for table `ajj_nfd_data_event_queue`
--

DROP TABLE IF EXISTS `ajj_nfd_data_event_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_nfd_data_event_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `event` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(3) NOT NULL DEFAULT '0',
  `reserved_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_nfd_data_event_queue`
--

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

--
-- Table structure for table `ajj_options`
--

DROP TABLE IF EXISTS `ajj_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=16901 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_options`
--

LOCK TABLES `ajj_options` WRITE;
/*!40000 ALTER TABLE `ajj_options` DISABLE KEYS */;
INSERT INTO `ajj_options` VALUES (1,'siteurl','https://healthyfoodrestaurant.in','yes'),(2,'home','https://healthyfoodrestaurant.in','yes'),(3,'blogname','Healthy Food Restaurant','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','arpitkmaurya1@protonmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:111:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:42:\"e-landing-page/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:52:\"e-landing-page/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:72:\"e-landing-page/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:67:\"e-landing-page/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:48:\"e-landing-page/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:31:\"e-landing-page/([^/]+)/embed/?$\";s:47:\"index.php?e-landing-page=$matches[1]&embed=true\";s:35:\"e-landing-page/([^/]+)/trackback/?$\";s:41:\"index.php?e-landing-page=$matches[1]&tb=1\";s:43:\"e-landing-page/([^/]+)/page/?([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&paged=$matches[2]\";s:50:\"e-landing-page/([^/]+)/comment-page-([0-9]{1,})/?$\";s:54:\"index.php?e-landing-page=$matches[1]&cpage=$matches[2]\";s:39:\"e-landing-page/([^/]+)(?:/([0-9]+))?/?$\";s:53:\"index.php?e-landing-page=$matches[1]&page=$matches[2]\";s:31:\"e-landing-page/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:41:\"e-landing-page/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:61:\"e-landing-page/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:56:\"e-landing-page/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:37:\"e-landing-page/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=106&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";i:1;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:41:\"demo-importer-plus/demo-importer-plus.php\";i:4;s:31:\"elementor-pro/elementor-pro.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:19:\"jetpack/jetpack.php\";i:7;s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";i:8;s:35:\"rishi-companion/rishi-companion.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','rishi','yes'),(41,'stylesheet','rishi','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','1','yes'),(68,'close_comments_days_old','28','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','20','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a: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'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{i:0;s:15:\"HT_CTC_Register\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','1561','yes'),(82,'page_on_front','106','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','4785','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1709603305','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.20.2\";}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','55853','yes'),(100,'ajj_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:8:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:7;a:1:{s:7:\"content\";s:447:\"<!-- wp:gallery {\"linkTo\":\"none\",\"sizeSlug\":\"full\",\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":3151,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-4.png\" alt=\"\" class=\"wp-image-3151\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}s:12:\"_multiwidget\";i:1;i:9;a:1:{s:7:\"content\";s:153:\"<!-- wp:heading {\"textAlign\":\"center\",\"level\":4} -->\n<h4 class=\"wp-block-heading has-text-align-center\">Healthy Food Restaurant</h4>\n<!-- /wp:heading -->\";}}','yes'),(104,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:11:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";i:5;s:8:\"search-1\";i:6;s:14:\"recent-posts-1\";i:7;s:17:\"recent-comments-1\";i:8;s:10:\"archives-1\";i:9;s:12:\"categories-1\";i:10;s:6:\"meta-1\";}s:10:\"footer-one\";a:2:{i:0;s:7:\"block-7\";i:1;s:7:\"block-9\";}s:10:\"footer-two\";a:1:{i:0;s:10:\"nav_menu-1\";}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:11:\"footer-five\";a:0:{}s:10:\"footer-six\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'allow_major_auto_core_updates','true','yes'),(106,'allow_minor_auto_core_updates','true','yes'),(107,'auto_update_plugin','true','yes'),(108,'auto_update_theme','true','yes'),(109,'auto_update_translation','true','yes'),(110,'mm_brand','Bluehost_India','yes'),(111,'mm_coming_soon','true','yes'),(112,'mm_host','b7119342-0c17-11e2-8b3b-0030483370c8','yes'),(113,'bluehost_plugin_compatibility_results','a:2:{s:6:\"status\";s:8:\"standard\";s:9:\"timestamp\";s:19:\"2023-09-07 01:48:30\";}','yes'),(115,'CE4WP_REFERRED_BY','a:3:{s:8:\"campaign\";s:17:\"Bluehost_Standard\";s:6:\"plugin\";s:8:\"Bluehost\";s:6:\"source\";s:12:\"preinstalled\";}','yes'),(119,'endurance_cache_level','2','yes'),(120,'jetpack_activated','1','yes'),(121,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(122,'jetpack_sync_settings_disable','0','yes'),(123,'jetpack_options','a:11:{s:7:\"version\";s:17:\"13.2.2:1711129149\";s:11:\"old_version\";s:17:\"13.2.1:1710295400\";s:14:\"last_heartbeat\";i:1711764060;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:223223399;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:27:\"recommendations_conditional\";a:4:{i:0;s:7:\"protect\";i:1;s:11:\"backup-plan\";i:2;s:5:\"boost\";i:3;s:9:\"publicize\";}s:32:\"recommendations_banner_dismissed\";i:1;s:26:\"identity_crisis_url_secret\";a:2:{s:6:\"secret\";s:12:\"GiM3yDO89CGV\";s:10:\"expires_at\";i:1701052744;}}','yes'),(124,'wpseo','a:106:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:0;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.1\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1694051321;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:32:\"https://healthyfoodrestaurant.in\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1694051367;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:1:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1694051367;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(125,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.1\";}','yes'),(126,'cron','a:15:{i:1711779066;a:1:{s:18:\"nfd_data_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1711779241;a:2:{s:17:\"jetpack_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}s:22:\"jetpack_sync_full_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:21:\"jetpack_sync_interval\";s:4:\"args\";a:0:{}s:8:\"interval\";i:300;}}}i:1711781321;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:1711781322;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:1711806522;a:4:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1711806564;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1711849721;a:3:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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: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:1711849764;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1711849766;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1711849767;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1711850754;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:1712195331;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:1712281721;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1712281724;a:1:{s:13:\"nfd_data_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(127,'wpseo_titles','a:117:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(128,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(133,'jetpack_available_modules','a:1:{s:6:\"13.2.2\";a:45:{s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(134,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(137,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'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'),(140,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(143,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(144,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(146,'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'),(147,'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'),(148,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(149,'widget_nav_menu','a:2:{i:1;a:1:{s:8:\"nav_menu\";i:8;}s:12:\"_multiwidget\";i:1;}','yes'),(150,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151,'_transient_wp_core_block_css_files','a:496:{i:0;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor.css\";i:3;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor.min.css\";i:4;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style-rtl.css\";i:5;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style.css\";i:7;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style.min.css\";i:8;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor.css\";i:11;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor.min.css\";i:12;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style-rtl.css\";i:13;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style.css\";i:15;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style.min.css\";i:16;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme.css\";i:19;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme.min.css\";i:20;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor.css\";i:23;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor.min.css\";i:24;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style.css\";i:27;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style.min.css\";i:28;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor-rtl.css\";i:29;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor.css\";i:31;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor.min.css\";i:32;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor-rtl.css\";i:33;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor.css\";i:35;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor.min.css\";i:36;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style-rtl.css\";i:37;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style.css\";i:39;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style.min.css\";i:40;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor.css\";i:43;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor.min.css\";i:44;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style.css\";i:47;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style.min.css\";i:48;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style.css\";i:51;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style.min.css\";i:52;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor.css\";i:55;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor.min.css\";i:56;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style-rtl.css\";i:57;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style.css\";i:59;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style.min.css\";i:60;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor-rtl.css\";i:61;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor.css\";i:63;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor.min.css\";i:64;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style-rtl.css\";i:65;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style.css\";i:67;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style.min.css\";i:68;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme-rtl.css\";i:69;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme.css\";i:71;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme.min.css\";i:72;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor.css\";i:75;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor.min.css\";i:76;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style-rtl.css\";i:77;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style.css\";i:79;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style.min.css\";i:80;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style.css\";i:83;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style.min.css\";i:84;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style.css\";i:87;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style.min.css\";i:88;s:111:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:115:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:111:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style.css\";i:99;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor.css\";i:103;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor.css\";i:107;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor.min.css\";i:108;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style-rtl.css\";i:109;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style.css\";i:111;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style.min.css\";i:112;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor.css\";i:115;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor.min.css\";i:116;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style-rtl.css\";i:117;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style.css\";i:119;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style.min.css\";i:120;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor-rtl.css\";i:121;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor.css\";i:123;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor.min.css\";i:124;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style-rtl.css\";i:125;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style.css\";i:127;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style.min.css\";i:128;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor.css\";i:131;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor.min.css\";i:132;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style-rtl.css\";i:133;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style.css\";i:135;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style.min.css\";i:136;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme.css\";i:139;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme.min.css\";i:140;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor-rtl.css\";i:141;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor.css\";i:143;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor.min.css\";i:144;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style-rtl.css\";i:145;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style.css\";i:147;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style.min.css\";i:148;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style.css\";i:151;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style.min.css\";i:152;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor.css\";i:155;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor.min.css\";i:156;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor.css\";i:159;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor.min.css\";i:160;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style.css\";i:163;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style.min.css\";i:164;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme.css\";i:167;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme.min.css\";i:168;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor-rtl.css\";i:169;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor.css\";i:171;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor.min.css\";i:172;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style-rtl.css\";i:173;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style.css\";i:175;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style.min.css\";i:176;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme-rtl.css\";i:177;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme.css\";i:179;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme.min.css\";i:180;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style-rtl.css\";i:181;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style.css\";i:183;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style.min.css\";i:184;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor-rtl.css\";i:185;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor.css\";i:187;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor.min.css\";i:188;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor-rtl.css\";i:189;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor.css\";i:191;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor.min.css\";i:192;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style-rtl.css\";i:193;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style.css\";i:195;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style.min.css\";i:196;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme-rtl.css\";i:197;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme.css\";i:199;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme.min.css\";i:200;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style.css\";i:203;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor.css\";i:207;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style.css\";i:211;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style-rtl.css\";i:213;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style.css\";i:215;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style.min.css\";i:216;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor.css\";i:219;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor.min.css\";i:220;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style.css\";i:223;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style.min.css\";i:224;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor-rtl.css\";i:225;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor.css\";i:227;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor.min.css\";i:228;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor.css\";i:231;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style.css\";i:235;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor.css\";i:243;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor.min.css\";i:244;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style.css\";i:247;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style.min.css\";i:248;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor.css\";i:251;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor.css\";i:255;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor.min.css\";i:256;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style.css\";i:259;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style.min.css\";i:260;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor.css\";i:263;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style.css\";i:267;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style.min.css\";i:268;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style.css\";i:271;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style.min.css\";i:272;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:105:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style.css\";i:279;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style.css\";i:283;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style.min.css\";i:284;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style.css\";i:291;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style.css\";i:299;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor.css\";i:307;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor.min.css\";i:308;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style.css\";i:311;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style.min.css\";i:312;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style.css\";i:315;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style.min.css\";i:316;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style.css\";i:319;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style.min.css\";i:320;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style.css\";i:323;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style.min.css\";i:324;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor.css\";i:327;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style.css\";i:331;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style.min.css\";i:332;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme.css\";i:335;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:108:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:112:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:104:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:108:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:104:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor.css\";i:343;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style.css\";i:347;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style.css\";i:351;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style.min.css\";i:352;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor-rtl.css\";i:353;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor.css\";i:355;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor.min.css\";i:356;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style-rtl.css\";i:357;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style.css\";i:359;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style.min.css\";i:360;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme.css\";i:363;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme.min.css\";i:364;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style.css\";i:367;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style.min.css\";i:368;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor.css\";i:371;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor.min.css\";i:372;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style-rtl.css\";i:373;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:82:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style.css\";i:375;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style.min.css\";i:376;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor-rtl.css\";i:377;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor.css\";i:379;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor.min.css\";i:380;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style-rtl.css\";i:381;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style.css\";i:383;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style.min.css\";i:384;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme-rtl.css\";i:385;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme.css\";i:387;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme.min.css\";i:388;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor.css\";i:391;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor.min.css\";i:392;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style-rtl.css\";i:393;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style.css\";i:395;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style.min.css\";i:396;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme.css\";i:399;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme.min.css\";i:400;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor.css\";i:403;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor.css\";i:407;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style.css\";i:411;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style.min.css\";i:412;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor.css\";i:415;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor.css\";i:419;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor.min.css\";i:420;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style.css\";i:423;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style.min.css\";i:424;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor.css\";i:427;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor.min.css\";i:428;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor.css\";i:431;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor.min.css\";i:432;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style.css\";i:435;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style.min.css\";i:436;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor.css\";i:439;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor.min.css\";i:440;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style.css\";i:443;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style.min.css\";i:444;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor-rtl.css\";i:445;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor.css\";i:447;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor.min.css\";i:448;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style-rtl.css\";i:449;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style.css\";i:451;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style.min.css\";i:452;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme-rtl.css\";i:453;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme.css\";i:455;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme.min.css\";i:456;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style.css\";i:459;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor.css\";i:463;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor.min.css\";i:464;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme.css\";i:467;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme.min.css\";i:468;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style.css\";i:471;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style.min.css\";i:472;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor.css\";i:475;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style.css\";i:479;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style.min.css\";i:480;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style-rtl.css\";i:481;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style.css\";i:483;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style.min.css\";i:484;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor-rtl.css\";i:485;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor.css\";i:487;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor.min.css\";i:488;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style-rtl.css\";i:489;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style.css\";i:491;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style.min.css\";i:492;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme-rtl.css\";i:493;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme.css\";i:495;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme.min.css\";}','yes'),(156,'nfd_data_connection_attempts','0','yes'),(158,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(159,'newfold_active_modules','a:16:{s:4:\"data\";b:1;s:2:\"ai\";b:1;s:9:\"installer\";b:1;s:18:\"wp-module-patterns\";b:1;s:11:\"coming-soon\";b:1;s:11:\"performance\";b:1;s:8:\"facebook\";b:1;s:9:\"ecommerce\";b:1;s:10:\"global-ctb\";b:1;s:11:\"help-center\";b:1;s:11:\"marketplace\";b:1;s:13:\"notifications\";b:1;s:10:\"onboarding\";b:0;s:16:\"secure-passwords\";b:1;s:3:\"sso\";b:1;s:7:\"staging\";b:1;}','yes'),(162,'nfd_data_token','5jcF6xHw13ZcdYflY1FK9GduUXk3eVZ4d1RwY3FOaHZORFZRVTdHZXR0NDZaRUN4cnRoR2VMRDQzVXp3YkhKU1F0aWNPaTVra0pqWEdRUkpCN0FFVVV1ZHVBZTZJQjlwYmtUTy9ONHdqbko3dXpLbGlXTUYxWTh1dHpleW4rN1BYYWovTUJEY0tyUG8vWTFHcVplTW9QWTVTWmRJTXQwL3VQaStjTTA9','yes'),(172,'recovery_keys','a:0:{}','yes'),(173,'jetpack_sync_https_history_home_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(174,'jetpack_sync_https_history_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(175,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1694052259;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(176,'https_detection_errors','a:1:{s:19:\"bad_response_source\";a:1:{i:0;s:55:\"It looks like the response did not come from this site.\";}}','yes'),(179,'auto_update_plugins','a:12:{i:0;s:19:\"akismet/akismet.php\";i:1;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:4;s:41:\"demo-importer-plus/demo-importer-plus.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:31:\"elementor-pro/elementor-pro.php\";i:7;s:9:\"hello.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";i:10;s:35:\"rishi-companion/rishi-companion.php\";i:11;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";}','no'),(180,'jetpack_waf_needs_update','1','yes'),(191,'jetpack_tos_agreed','1','yes'),(192,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"jzNg5O3CRp36TJQRrihN9qqzwt6k9JLF\";s:8:\"secret_2\";s:32:\"QtUw0in7Vs481V0xblZChPFFhBRvr0qB\";s:3:\"exp\";i:1694051947;}}','no'),(193,'_transient_jetpack_assumed_site_creation_date','2023-09-07 01:48:25','yes'),(194,'jetpack_package_versions','a:5:{s:6:\"backup\";s:5:\"3.3.0\";s:10:\"connection\";s:5:\"2.3.4\";s:4:\"sync\";s:5:\"2.9.0\";s:6:\"search\";s:6:\"0.43.4\";s:10:\"videopress\";s:6:\"0.23.7\";}','yes'),(195,'jetpack_private_options','a:1:{s:10:\"blog_token\";s:65:\"sLw^b1ntnADcPA#4kGbLTYmH3V2)5#fR.uvEE(Cz)S882uuw(kkA!T(ujQ6RAcDWe\";}','yes'),(196,'jetpack_active_modules','a:9:{i:0;s:5:\"blaze\";i:1;s:12:\"contact-form\";i:2;s:21:\"enhanced-distribution\";i:3;s:8:\"json-api\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:21:\"woocommerce-analytics\";i:7;s:6:\"photon\";i:8;s:3:\"sso\";}','yes'),(198,'jetpack_protect_key','bf0a5034793ac064cbd26612e5e795297b8bb37a','no'),(201,'jetpack_unique_registrations','1','yes'),(202,'jetpack_sync_settings_custom_queue_table_enabled','1','yes'),(203,'jetpack_sync_settings_max_queue_size','5000','yes'),(204,'jetpack_sync_settings_max_queue_lag','7200','yes'),(206,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(207,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(208,'jetpack_sync_settings_upload_max_rows','500','yes'),(209,'jetpack_sync_settings_sync_wait_time','10','yes'),(210,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(211,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(212,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(213,'jetpack_sync_settings_post_types_blacklist','a:37:{i:0;s:10:\"_term_meta\";i:1;s:11:\"ai1ec_event\";i:2;s:6:\"ai_log\";i:3;s:17:\"amp_validated_url\";i:4;s:9:\"bwg_album\";i:5;s:11:\"bwg_gallery\";i:6;s:19:\"customize_changeset\";i:7;s:12:\"dn_wp_yt_log\";i:8;s:16:\"flamingo_contact\";i:9;s:16:\"flamingo_inbound\";i:10;s:17:\"flamingo_outbound\";i:11;s:4:\"http\";i:12;s:8:\"idx_page\";i:13;s:19:\"jetpack_inspect_log\";i:14;s:17:\"jetpack_migration\";i:15;s:14:\"jp_img_sitemap\";i:16;s:20:\"jp_img_sitemap_index\";i:17;s:10:\"jp_sitemap\";i:18;s:16:\"jp_sitemap_index\";i:19;s:17:\"jp_sitemap_master\";i:20;s:14:\"jp_vid_sitemap\";i:21;s:20:\"jp_vid_sitemap_index\";i:22;s:11:\"msm_sitemap\";i:23;s:17:\"postman_sent_mail\";i:24;s:10:\"rssap-feed\";i:25;s:15:\"rssmi_feed_item\";i:26;s:16:\"scheduled-action\";i:27;s:20:\"secupress_log_action\";i:28;s:17:\"sg_optimizer_jobs\";i:29;s:14:\"sl-insta-media\";i:30;s:6:\"snitch\";i:31;s:19:\"vip-legacy-redirect\";i:32;s:15:\"wp-rest-api-log\";i:33;s:12:\"wp_automatic\";i:34;s:6:\"wp_log\";i:35;s:17:\"wpephpcompat_jobs\";i:36;s:15:\"wprss_feed_item\";}','yes'),(217,'jetpack_sync_settings_dedicated_sync_enabled','1','yes'),(219,'jetpack_sync_settings_taxonomies_blacklist','a:149:{i:0;s:9:\"ancestors\";i:1;s:13:\"archives_link\";i:2;s:13:\"attached_file\";i:3;s:14:\"attached_media\";i:4;s:19:\"attached_media_args\";i:5;s:10:\"attachment\";i:6;s:19:\"available_languages\";i:7;s:6:\"avatar\";i:8;s:20:\"avatar_comment_types\";i:9;s:11:\"avatar_data\";i:10;s:10:\"avatar_url\";i:11;s:12:\"bloginfo_rss\";i:12;s:13:\"blogs_of_user\";i:13;s:13:\"bookmark_link\";i:14;s:9:\"bookmarks\";i:15;s:8:\"calendar\";i:16;s:13:\"canonical_url\";i:17;s:19:\"categories_per_page\";i:18;s:19:\"categories_taxonomy\";i:19;s:13:\"category_form\";i:20;s:20:\"category_form_fields\";i:21;s:17:\"category_form_pre\";i:22;s:7:\"comment\";i:23;s:10:\"comment_ID\";i:24;s:14:\"comment_author\";i:25;s:17:\"comment_author_IP\";i:26;s:20:\"comment_author_email\";i:27;s:19:\"comment_author_link\";i:28;s:18:\"comment_author_url\";i:29;s:23:\"comment_author_url_link\";i:30;s:12:\"comment_date\";i:31;s:15:\"comment_excerpt\";i:32;s:12:\"comment_link\";i:33;s:20:\"comment_misc_actions\";i:34;s:12:\"comment_text\";i:35;s:12:\"comment_time\";i:36;s:12:\"comment_type\";i:37;s:13:\"comments_link\";i:38;s:15:\"comments_number\";i:39;s:21:\"comments_pagenum_link\";i:40;s:11:\"custom_logo\";i:41;s:8:\"date_sql\";i:42;s:22:\"default_comment_status\";i:43;s:16:\"delete_post_link\";i:44;s:18:\"edit_bookmark_link\";i:45;s:17:\"edit_comment_link\";i:46;s:14:\"edit_post_link\";i:47;s:13:\"edit_tag_link\";i:48;s:14:\"edit_term_link\";i:49;s:14:\"edit_user_link\";i:50;s:8:\"enclosed\";i:51;s:15:\"feed_build_date\";i:52;s:13:\"form_advanced\";i:53;s:17:\"form_after_editor\";i:54;s:16:\"form_after_title\";i:55;s:21:\"form_before_permalink\";i:56;s:8:\"form_top\";i:57;s:18:\"handle_product_cat\";i:58;s:16:\"header_image_tag\";i:59;s:16:\"header_video_url\";i:60;s:9:\"image_tag\";i:61;s:15:\"image_tag_class\";i:62;s:12:\"lastpostdate\";i:63;s:16:\"lastpostmodified\";i:64;s:4:\"link\";i:65;s:18:\"link_category_form\";i:66;s:25:\"link_category_form_fields\";i:67;s:22:\"link_category_form_pre\";i:68;s:15:\"main_network_id\";i:69;s:5:\"media\";i:70;s:15:\"media_item_args\";i:71;s:7:\"ms_user\";i:72;s:7:\"network\";i:73;s:12:\"object_terms\";i:74;s:6:\"option\";i:75;s:4:\"page\";i:76;s:9:\"page_form\";i:77;s:15:\"page_of_comment\";i:78;s:8:\"page_uri\";i:79;s:12:\"pagenum_link\";i:80;s:5:\"pages\";i:81;s:6:\"plugin\";i:82;s:4:\"post\";i:83;s:14:\"post_galleries\";i:84;s:12:\"post_gallery\";i:85;s:9:\"post_link\";i:86;s:18:\"post_modified_time\";i:87;s:11:\"post_status\";i:88;s:9:\"post_time\";i:89;s:8:\"postmeta\";i:90;s:14:\"posts_per_page\";i:91;s:19:\"product_search_form\";i:92;s:11:\"profile_url\";i:93;s:4:\"pung\";i:94;s:9:\"role_list\";i:95;s:16:\"sample_permalink\";i:96;s:21:\"sample_permalink_html\";i:97;s:8:\"schedule\";i:98;s:11:\"search_form\";i:99;s:12:\"search_query\";i:100;s:9:\"shortlink\";i:101;s:4:\"site\";i:102;s:18:\"site_email_content\";i:103;s:13:\"site_icon_url\";i:104;s:11:\"site_option\";i:105;s:13:\"space_allowed\";i:106;s:3:\"tag\";i:107;s:8:\"tag_form\";i:108;s:15:\"tag_form_fields\";i:109;s:12:\"tag_form_pre\";i:110;s:8:\"tag_link\";i:111;s:4:\"tags\";i:112;s:13:\"tags_per_page\";i:113;s:4:\"term\";i:114;s:9:\"term_link\";i:115;s:18:\"term_relationships\";i:116;s:15:\"term_taxonomies\";i:117;s:13:\"term_taxonomy\";i:118;s:5:\"terms\";i:119;s:10:\"terms_args\";i:120;s:14:\"terms_defaults\";i:121;s:12:\"terms_fields\";i:122;s:13:\"terms_orderby\";i:123;s:23:\"the_archive_description\";i:124;s:17:\"the_archive_title\";i:125;s:14:\"the_categories\";i:126;s:8:\"the_date\";i:127;s:11:\"the_excerpt\";i:128;s:8:\"the_guid\";i:129;s:17:\"the_modified_date\";i:130;s:17:\"the_modified_time\";i:131;s:25:\"the_post_type_description\";i:132;s:8:\"the_tags\";i:133;s:9:\"the_terms\";i:134;s:8:\"the_time\";i:135;s:21:\"theme_starter_content\";i:136;s:7:\"to_ping\";i:137;s:4:\"user\";i:138;s:17:\"user_created_user\";i:139;s:9:\"user_form\";i:140;s:12:\"user_profile\";i:141;s:19:\"user_profile_update\";i:142;s:8:\"usermeta\";i:143;s:12:\"usernumposts\";i:144;s:12:\"users_drafts\";i:145;s:7:\"webhook\";i:146;s:6:\"widget\";i:147;s:19:\"woocommerce_archive\";i:148;s:12:\"wp_title_rss\";}','yes'),(221,'jetpack_sync_settings_render_filtered_content','0','yes'),(222,'jetpack_sync_settings_post_meta_whitelist','a:56:{i:0;s:24:\"_feedback_akismet_values\";i:1;s:15:\"_feedback_email\";i:2;s:22:\"_feedback_extra_fields\";i:3;s:21:\"_g_feedback_shortcode\";i:4;s:23:\"_jetpack_post_thumbnail\";i:5;s:25:\"_last_editor_used_jetpack\";i:6;s:18:\"_menu_item_classes\";i:7;s:27:\"_menu_item_menu_item_parent\";i:8;s:17:\"_menu_item_object\";i:9;s:20:\"_menu_item_object_id\";i:10;s:19:\"_menu_item_orphaned\";i:11;s:15:\"_menu_item_type\";i:12;s:14:\"_menu_item_xfn\";i:13;s:24:\"_publicize_facebook_user\";i:14;s:23:\"_publicize_twitter_user\";i:15;s:13:\"_thumbnail_id\";i:16;s:17:\"_wp_attached_file\";i:17;s:27:\"_wp_attachment_backup_sizes\";i:18;s:22:\"_wp_attachment_context\";i:19;s:24:\"_wp_attachment_image_alt\";i:20;s:35:\"_wp_attachment_is_custom_background\";i:21;s:31:\"_wp_attachment_is_custom_header\";i:22;s:23:\"_wp_attachment_metadata\";i:23;s:17:\"_wp_page_template\";i:24;s:30:\"_wp_trash_meta_comments_status\";i:25;s:21:\"_wpas_feature_enabled\";i:26;s:19:\"_wpas_is_tweetstorm\";i:27;s:10:\"_wpas_mess\";i:28;s:13:\"_wpas_options\";i:29;s:24:\"advanced_seo_description\";i:30;s:13:\"content_width\";i:31;s:14:\"custom_css_add\";i:32;s:23:\"custom_css_preprocessor\";i:33;s:9:\"enclosure\";i:34;s:9:\"imagedata\";i:35;s:10:\"nova_price\";i:36;s:17:\"publicize_results\";i:37;s:16:\"sharing_disabled\";i:38;s:18:\"switch_like_status\";i:39;s:15:\"videopress_guid\";i:40;s:18:\"vimeo_poster_image\";i:41;s:28:\"_jetpack_blogging_prompt_key\";i:42;s:25:\"jetpack_memberships_price\";i:43;s:28:\"jetpack_memberships_currency\";i:44;s:35:\"jetpack_memberships_site_subscriber\";i:45;s:14:\"spay_paypal_id\";i:46;s:11:\"spay_status\";i:47;s:15:\"spay_product_id\";i:48;s:13:\"spay_quantity\";i:49;s:10:\"spay_price\";i:50;s:19:\"spay_customer_email\";i:51;s:13:\"spay_currency\";i:52;s:8:\"spay_cta\";i:53;s:10:\"spay_email\";i:54;s:13:\"spay_multiple\";i:55;s:20:\"spay_formatted_price\";}','yes'),(224,'jetpack_sync_settings_comment_meta_whitelist','a:4:{i:0;s:9:\"hc_avatar\";i:1;s:18:\"hc_foreign_user_id\";i:2;s:10:\"hc_post_as\";i:3;s:15:\"hc_wpcom_id_sig\";}','yes'),(226,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(227,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(228,'jetpack_sync_settings_sync_via_cron','1','yes'),(229,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(230,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(231,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(232,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(233,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(234,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(235,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),(236,'jetpack_sync_settings_checksum_disable','0','yes'),(239,'jetpack_plugin_api_action_links','a:2:{s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{s:8:\"Settings\";s:70:\"https://healthyfoodrestaurant.in/wp-admin/admin.php?page=click-to-chat\";s:11:\"PRO Version\";s:53:\"https://holithemes.com/plugins/click-to-chat/pricing/\";}s:19:\"jetpack/jetpack.php\";a:1:{s:10:\"My Jetpack\";s:67:\"https://healthyfoodrestaurant.in/wp-admin/admin.php?page=my-jetpack\";}}','yes'),(241,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),(244,'jetpack_testimonial','0','yes'),(261,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:3573611519;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:1790921346;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:2090581655;s:11:\"PHP_VERSION\";i:2592233964;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:4261170317;s:14:\"WP_CONTENT_DIR\";i:2923425969;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:289485416;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1474498405;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:2322626082;}','yes'),(262,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(307,'jetpack_callables_sync_checksum','a:39:{s:21:\"get_loaded_extensions\";i:3868720878;s:11:\"get_plugins\";i:3801573045;s:10:\"get_themes\";i:3799787646;s:24:\"get_plugins_action_links\";i:3149948517;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:2348218089;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:2348218089;s:26:\"main_network_site_wpcom_id\";i:3217838913;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:1527127605;s:10:\"post_types\";i:857309836;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:1426873501;s:10:\"shortcodes\";i:1041917653;s:13:\"site_icon_url\";i:3293666272;s:8:\"site_url\";i:2348218089;s:10:\"taxonomies\";i:120084487;s:13:\"theme_support\";i:1309285177;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:677931734;s:10:\"wp_version\";i:84779734;s:14:\"active_modules\";i:2559562048;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:24:\"available_jetpack_blocks\";i:3249825980;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(308,'jpsq_sync_checkout','0:0','no'),(309,'jp_sync_lock_full_sync','','no'),(310,'jetpack_next_sync_time_full-sync-enqueue','1694051949','yes'),(311,'jetpack_next_sync_time_sync','1710343166','yes'),(313,'jp_sync_last_success_immediate-send','1694094248.6017','no'),(317,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:3868046969;s:13:\"update_themes\";i:759945158;s:11:\"update_core\";i:1275440960;}','yes'),(318,'jp_sync_last_success_sync','1711764069.4591','no'),(343,'do_activate','0','yes'),(344,'ce4wp_contacts_db_version','1.0','yes'),(350,'ce4wp_handshake_token','2584D9AB-FBD7-4610-9007-B67ED0F0B6DD','yes'),(351,'ce4wp_handshake_expiration','1694054966','yes'),(352,'ce4wp_instance_uuid','64f92c2698c2f','yes'),(360,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(413,'recently_activated','a:0:{}','yes'),(416,'finished_updating_comment_type','1','yes'),(445,'nfd_coming_soon','true','yes'),(448,'nfd_data_module_version','2.4.20','yes'),(449,'auto_update_themes','a:6:{i:0;s:5:\"rishi\";i:1;s:7:\"sinatra\";i:2;s:16:\"twentytwentyfour\";i:3;s:15:\"twentytwentyone\";i:4;s:17:\"twentytwentythree\";i:5;s:15:\"twentytwentytwo\";}','no'),(450,'bluehost_plugin_version','3.9.2','yes'),(451,'mm_install_date','Sep 07, 2023','yes'),(452,'mm_cron','a:1:{s:6:\"hourly\";a:1:{s:9:\"installed\";a:5:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:13:\"plugin_status\";s:2:\"ea\";s:9:\"installed\";s:2:\"el\";s:26:\"Install date: Sep 07, 2023\";s:4:\"keep\";b:0;}}}','yes'),(453,'bluehost_plugin_install_date','1694051484','yes'),(469,'bh_cdata_retry_count','3','yes'),(504,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1694051936;s:8:\"finished\";i:1694051948;s:8:\"progress\";a:10:{s:8:\"comments\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:5:\"posts\";a:4:{s:5:\"total\";s:1:\"4\";s:4:\"sent\";i:4;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:18:\"term_relationships\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";a:2:{s:9:\"object_id\";s:1:\"1\";s:16:\"term_taxonomy_id\";s:1:\"1\";}}s:5:\"terms\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:6:\"themes\";a:1:{s:8:\"finished\";b:1;}s:7:\"updates\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"2\";s:4:\"sent\";i:2;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}}s:6:\"config\";a:10:{s:8:\"comments\";i:1;s:9:\"constants\";i:1;s:9:\"functions\";i:1;s:7:\"options\";i:1;s:5:\"posts\";i:1;s:18:\"term_relationships\";i:1;s:5:\"terms\";i:1;s:6:\"themes\";i:1;s:7:\"updates\";i:1;s:5:\"users\";i:1;}}','no'),(509,'jp_sync_retry_after_immediate-send','1694051944.881','no'),(510,'jp_sync_error_log_immediate-send','a:3:{s:15:\"1694051938.2342\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:58 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1694051939.5855\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1694051939.8818\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),(512,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1694051946.394947052001953125;}','yes'),(552,'current_theme','Rishi','yes'),(553,'theme_mods_rishi','a:72:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:9;}s:18:\"custom_css_post_id\";i:-1;s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";b:1;s:18:\"0.6890474456357631\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";i:4758;s:6:\"tablet\";i:4758;s:6:\"mobile\";i:4758;s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:10:\"logo-title\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"66\";s:6:\"mobile\";s:2:\"56\";s:9:\"__changed\";a:2:{i:0;s:6:\"mobile\";i:1;s:6:\"tablet\";}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"74\";s:6:\"tablet\";s:2:\"74\";s:6:\"mobile\";s:2:\"74\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:24:\"Healthy Food Restaurant \";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:3:\"yes\";s:15:\"blogdescription\";s:0:\"\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:17:\"logo:logoMaxWidth\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:9:{s:18:\"0.5647751040525999\";s:6:\"update\";s:19:\"0.01316682782663614\";s:6:\"update\";s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:1:{i:0;s:13:\"widget-area-1\";}i:1;a:1:{i:0;s:13:\"widget-area-2\";}i:2;a:1:{i:0;s:8:\"contacts\";}i:3;a:1:{i:0;s:7:\"socials\";}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:7:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:10:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}s:16:\"4_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(4, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:29:\"rishi__cb_customizer_location\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}s:9:\"copyright\";a:2:{s:2:\"id\";s:9:\"copyright\";s:6:\"values\";a:1:{s:14:\"copyright_text\";s:127:\"<p>Copyright © {current_year} {site_title} - Designed &amp; Developed by <a href=\"http://whettle.com\">Whettle Services</a></p>\";}}s:7:\"socials\";a:2:{s:2:\"id\";s:7:\"socials\";s:6:\"values\";a:1:{s:14:\"footer_socials\";a:7:{i:0;a:2:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;}i:1;a:2:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;}i:2;a:2:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;}i:3;a:3:{s:2:\"id\";s:7:\"youtube\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"6DC-FGDnDBqDcZt-Sa7P2\";}i:4;a:3:{s:2:\"id\";s:5:\"phone\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"5I5oNfQVev3oYX2Ig2grM\";}i:5;a:3:{s:2:\"id\";s:5:\"email\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"9f_RBJ_p7Lru1Tuv3WYRi\";}i:6;a:3:{s:2:\"id\";s:8:\"whatsapp\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"CmkZ1a7eqp6yo7sjAlgfJ\";}}}}s:8:\"contacts\";a:2:{s:2:\"id\";s:8:\"contacts\";s:6:\"values\";a:1:{s:13:\"contact_items\";a:4:{i:0;a:6:{s:2:\"id\";s:5:\"email\";s:7:\"enabled\";b:1;s:5:\"title\";s:6:\"Email:\";s:7:\"content\";s:29:\"care@healthyfoodrestaurant.in\";s:4:\"link\";s:36:\"mailto:care@healthyfoodrestaurant.in\";s:4:\"__id\";s:21:\"Co4AamBXHUquF7YtD2b6G\";}i:1;a:6:{s:2:\"id\";s:5:\"phone\";s:7:\"enabled\";b:1;s:5:\"title\";s:6:\"Phone:\";s:7:\"content\";s:17:\"+ 91 9628-4444-58\";s:4:\"link\";s:21:\"tel:+ 91 9628-4444-58\";s:4:\"__id\";s:21:\"qvMQqubw-Yy7a2qR3gm_Y\";}i:2;a:6:{s:2:\"id\";s:7:\"address\";s:7:\"enabled\";b:1;s:5:\"title\";s:9:\"Address: \";s:7:\"content\";s:91:\"Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\";s:4:\"link\";s:0:\"\";s:4:\"__id\";s:21:\"mDETyiDiK9b4SxzYSQN1o\";}i:3;a:6:{s:2:\"id\";s:7:\"website\";s:7:\"enabled\";b:1;s:5:\"title\";s:8:\"Website:\";s:7:\"content\";s:23:\"Healthy Food Restaurant\";s:4:\"link\";s:32:\"https://healthyfoodrestaurant.in\";s:4:\"__id\";s:21:\"J4rbSfxp9FpMboFilcGPR\";}}}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:22:\"contacts:contact_items\";s:18:\"__should_refresh__\";b:0;}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:6:\"Caudex\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";i:4758;s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";s:12:\"layout_style\";s:10:\"no-sidebar\";s:19:\"page_sidebar_layout\";s:8:\"centered\";s:11:\"page_layout\";s:13:\"content_boxed\";s:23:\"page_layout_streched_ed\";s:3:\"yes\";s:6:\"layout\";s:13:\"content_boxed\";}','yes'),(555,'theme_switched','','yes'),(581,'rc_active_extensions','a:2:{i:0;s:14:\"sidebar-blocks\";i:1;s:18:\"transparent-header\";}','yes'),(582,'rc_active_extensions_flag','1','yes'),(649,'demo_importer_plus_recent_import_log_file','/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/demo-importer-plus/import-07-Sep-2023-02-07-01.txt','yes'),(650,'demo-importer-plus-batch-status-string','Dispatch the Queue!','no'),(651,'demo-importerplus-sites-categories','a:19:{i:0;a:3:{s:2:\"id\";i:245;s:4:\"name\";s:17:\"Download Firmware\";s:4:\"slug\";s:17:\"download-firmware\";}i:1;a:3:{s:2:\"id\";i:246;s:4:\"name\";s:23:\"Download Stock Firmware\";s:4:\"slug\";s:23:\"download-stock-firmware\";}i:2;a:3:{s:2:\"id\";i:227;s:4:\"name\";s:3:\"All\";s:4:\"slug\";s:3:\"all\";}i:3;a:3:{s:2:\"id\";i:225;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";}i:4;a:3:{s:2:\"id\";i:226;s:4:\"name\";s:7:\"Premium\";s:4:\"slug\";s:7:\"premium\";}i:5;a:3:{s:2:\"id\";i:31;s:4:\"name\";s:22:\"Business and Corporate\";s:4:\"slug\";s:22:\"business-and-corporate\";}i:6;a:3:{s:2:\"id\";i:43;s:4:\"name\";s:9:\"Education\";s:4:\"slug\";s:9:\"education\";}i:7;a:3:{s:2:\"id\";i:207;s:4:\"name\";s:10:\"Conference\";s:4:\"slug\";s:10:\"conference\";}i:8;a:3:{s:2:\"id\";i:133;s:4:\"name\";s:17:\"Health and Beauty\";s:4:\"slug\";s:13:\"health-beauty\";}i:9;a:3:{s:2:\"id\";i:199;s:4:\"name\";s:17:\"Blog and Magazine\";s:4:\"slug\";s:17:\"blog-and-magazine\";}i:10;a:3:{s:2:\"id\";i:135;s:4:\"name\";s:19:\"People and Services\";s:4:\"slug\";s:19:\"people-and-services\";}i:11;a:3:{s:2:\"id\";i:134;s:4:\"name\";s:8:\"Creative\";s:4:\"slug\";s:8:\"creative\";}i:12;a:3:{s:2:\"id\";i:119;s:4:\"name\";s:6:\"Events\";s:4:\"slug\";s:6:\"events\";}i:13;a:3:{s:2:\"id\";i:137;s:4:\"name\";s:10:\"Non Profit\";s:4:\"slug\";s:10:\"non-profit\";}i:14;a:3:{s:2:\"id\";i:145;s:4:\"name\";s:20:\"Food and Restaurants\";s:4:\"slug\";s:16:\"food-restaurants\";}i:15;a:3:{s:2:\"id\";i:187;s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";}i:16;a:3:{s:2:\"id\";i:210;s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";}i:17;a:3:{s:2:\"id\";i:208;s:4:\"name\";s:7:\"Seminar\";s:4:\"slug\";s:7:\"seminar\";}i:18;a:3:{s:2:\"id\";i:1;s:4:\"name\";s:13:\"Uncategorized\";s:4:\"slug\";s:13:\"uncategorized\";}}','no'),(654,'demo-importer-plus-batch-status','in-process','no'),(660,'demo_importer_plus_import_data','a:3:{s:7:\"success\";b:1;s:7:\"message\";s:16:\"Demo Site Found.\";s:4:\"data\";a:17:{s:2:\"id\";i:1355;s:10:\"theme_slug\";s:5:\"rishi\";s:10:\"theme_name\";s:5:\"Rishi\";s:10:\"site_title\";s:10:\"Restaurant\";s:8:\"site_url\";s:33:\"https://rishidemos.com/restaurant\";s:9:\"site_type\";s:4:\"free\";s:15:\"is_onepage_demo\";s:2:\"no\";s:15:\"customizer-data\";a:67:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";b:1;s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";i:50;s:6:\"tablet\";i:50;s:7:\"desktop\";i:50;}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";i:70;s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";i:70;s:6:\"tablet\";i:70;s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";i:100;s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";i:15;s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:0;}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";i:50;s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";b:1;}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";i:4210;s:6:\"tablet\";i:4210;s:6:\"mobile\";i:4210;s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";b:0;}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";b:1;s:6:\"mobile\";b:1;}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:106;}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:115;}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:749;}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:751;}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:753;}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";b:1;s:6:\"mobile\";b:1;}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";i:40;s:6:\"mobile\";i:40;s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";b:0;}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";b:0;}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";b:0;}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";i:4210;s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:0;s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";i:2;s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";i:3;s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";i:3;s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}s:8:\"wxr-path\";s:70:\"https://rishidemos.com/wp-content/uploads/2021/08/rishi-restaurant.xml\";s:11:\"site-option\";a:39:{s:10:\"custom_log\";s:73:\"https://rishidemos.com/wp-content/uploads/sites/9/2021/11/Logo-Whhite.png\";s:20:\"elementor_active_kit\";s:2:\"29\";s:25:\"elementor_container_width\";i:1190;s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"internal\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";b:0;s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:23:\"elementor_load_fa4_shim\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:14:\"h1.entry-title\";s:22:\"elementor_scheme_color\";a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}s:29:\"elementor_scheme_color-picker\";a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}s:27:\"elementor_scheme_typography\";a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}s:31:\"elementor_space_between_widgets\";i:0;s:37:\"elementor_stretched_section_container\";s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:6:\"menu-1\";}s:14:\"page_for_posts\";s:4:\"Blog\";s:13:\"page_on_front\";s:4:\"Home\";s:13:\"show_on_front\";s:4:\"page\";s:27:\"woocommerce_cart_page_title\";b:0;s:38:\"woocommerce_change_password_page_title\";b:0;s:31:\"woocommerce_checkout_page_title\";b:0;s:35:\"woocommerce_edit_address_page_title\";b:0;s:42:\"woocommerce_enable_checkout_login_reminder\";s:2:\"no\";s:33:\"woocommerce_enable_guest_checkout\";s:3:\"yes\";s:41:\"woocommerce_enable_myaccount_registration\";s:2:\"no\";s:49:\"woocommerce_enable_signup_and_login_from_checkout\";s:2:\"no\";s:29:\"woocommerce_logout_page_title\";b:0;s:32:\"woocommerce_myaccount_page_title\";b:0;s:30:\"woocommerce_product_attributes\";b:0;s:23:\"woocommerce_product_cat\";b:0;s:28:\"woocommerce_product_cat_list\";b:0;s:42:\"woocommerce_registration_generate_username\";s:3:\"yes\";s:27:\"woocommerce_shop_page_title\";b:0;s:33:\"woocommerce_view_order_page_title\";b:0;s:11:\"ultp-widget\";b:0;}s:19:\"site_featured_image\";s:77:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-featureimage.png\";s:17:\"site_page_builder\";s:9:\"elementor\";s:15:\"site_categories\";a:3:{i:0;a:12:{s:7:\"term_id\";i:227;s:4:\"name\";s:3:\"All\";s:4:\"slug\";s:3:\"all\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:227;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:90;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"3\";s:9:\"object_id\";i:1355;}i:1;a:12:{s:7:\"term_id\";i:225;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:225;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:33;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"4\";s:9:\"object_id\";i:1355;}i:2;a:12:{s:7:\"term_id\";i:145;s:4:\"name\";s:20:\"Food and Restaurants\";s:4:\"slug\";s:16:\"food-restaurants\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:145;s:8:\"taxonomy\";s:8:\"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:2:\"15\";s:9:\"object_id\";i:1355;}}s:9:\"site_tags\";a:8:{i:132;s:3:\"Bar\";i:120;s:8:\"Business\";i:129;s:4:\"Cafe\";i:131;s:4:\"Chef\";i:127;s:4:\"Food\";i:130;s:4:\"Menu\";i:128;s:10:\"Restaurant\";i:125;s:8:\"Services\";}s:5:\"pages\";a:5:{i:106;a:4:{s:5:\"title\";s:4:\"Home\";s:19:\"fullpage-screenshot\";s:73:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-homepage.png\";s:8:\"page_url\";s:34:\"https://rishidemos.com/restaurant/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/106\";}i:115;a:4:{s:5:\"title\";s:5:\"About\";s:19:\"fullpage-screenshot\";s:70:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-about.png\";s:8:\"page_url\";s:40:\"https://rishidemos.com/restaurant/about/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/115\";}i:749;a:4:{s:5:\"title\";s:4:\"Menu\";s:19:\"fullpage-screenshot\";s:69:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-menu.png\";s:8:\"page_url\";s:39:\"https://rishidemos.com/restaurant/menu/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/749\";}i:751;a:4:{s:5:\"title\";s:12:\"Testimonials\";s:19:\"fullpage-screenshot\";s:77:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-testimonials.png\";s:8:\"page_url\";s:47:\"https://rishidemos.com/restaurant/testimonials/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/751\";}i:753;a:4:{s:5:\"title\";s:7:\"Contact\";s:19:\"fullpage-screenshot\";s:72:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-contact.png\";s:8:\"page_url\";s:42:\"https://rishidemos.com/restaurant/contact/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/753\";}}s:16:\"required_plugins\";a:4:{i:0;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:4:\"init\";s:36:\"contact-form-7/wp-contact-form-7.php\";}i:1;a:3:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";}i:2;a:3:{s:4:\"name\";s:36:\"Mega Elements - Addons for Elementor\";s:4:\"slug\";s:34:\"mega-elements-addons-for-elementor\";s:4:\"init\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";}i:3;a:3:{s:4:\"name\";s:15:\"Rishi Companion\";s:4:\"slug\";s:15:\"rishi-companion\";s:4:\"init\";s:35:\"rishi-companion/rishi-companion.php\";}}s:12:\"widgets-data\";s:971:\"{\"sidebar-1\":{\"search-2\":{\"title\":\"\"},\"recent-posts-2\":{\"title\":\"\",\"number\":5},\"recent-comments-2\":{\"title\":\"\",\"number\":5},\"archives-2\":{\"title\":\"\",\"count\":0,\"dropdown\":0},\"categories-2\":{\"title\":\"\",\"count\":0,\"hierarchical\":0,\"dropdown\":0},\"meta-2\":{\"title\":\"\"}},\"footer-one\":{\"block-6\":{\"content\":\"<!-- wp:gallery {\\\"ids\\\":[3151],\\\"linkTo\\\":\\\"none\\\",\\\"sizeSlug\\\":\\\"full\\\",\\\"align\\\":\\\"center\\\"} -->\\n<figure class=\\\"wp-block-gallery aligncenter columns-1 is-cropped\\\"><ul class=\\\"blocks-gallery-grid\\\"><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/logo-4.png\\\" alt=\\\"\\\" data-id=\\\"3151\\\" data-full-url=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/logo-4.png\\\" data-link=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/logo-4\\/\\\" class=\\\"wp-image-3151\\\"\\/><\\/figure><\\/li><\\/ul><\\/figure>\\n<!-- \\/wp:gallery -->\"}},\"footer-two\":{\"nav_menu-3\":{\"nav_menu\":22}}}\";}}','yes'),(691,'wpcf7','a:1:{s:7:\"version\";s:5:\"5.9.2\";}','yes'),(699,'elementor_version','3.20.2','yes'),(700,'elementor_install_history','a:22:{s:6:\"3.15.3\";i:1694141764;s:6:\"3.16.0\";i:1694531283;s:6:\"3.16.2\";i:1694650433;s:6:\"3.16.3\";i:1694738961;s:6:\"3.16.4\";i:1695256866;s:6:\"3.16.5\";i:1696877102;s:6:\"3.16.6\";i:1697570377;s:6:\"3.17.1\";i:1698257368;s:6:\"3.17.2\";i:1698854087;s:6:\"3.17.3\";i:1699469074;s:6:\"3.18.0\";i:1701724884;s:6:\"3.18.1\";i:1701895474;s:6:\"3.18.2\";i:1702052992;s:6:\"3.18.3\";i:1703207483;s:6:\"3.19.0\";i:1706567336;s:6:\"3.19.1\";i:1707145284;s:6:\"3.19.2\";i:1707353394;s:6:\"3.19.3\";i:1708985414;s:6:\"3.19.4\";i:1709130109;s:6:\"3.20.0\";i:1710171798;s:6:\"3.20.1\";i:1710343155;s:6:\"3.20.2\";i:1710989652;}','yes'),(711,'elementor_events_db_version','1.0.0','no'),(718,'_demo_importer_plus_sites_old_customizer_data','a:67:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:1:\"3\";}s:18:\"custom_css_post_id\";s:2:\"-1\";s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";s:1:\"1\";s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";s:4:\"4210\";s:6:\"tablet\";s:4:\"4210\";s:6:\"mobile\";s:4:\"4210\";s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";s:0:\"\";}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";s:4:\"4210\";s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}','yes'),(719,'demo-importer-plus-settings','a:67:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:1:\"3\";}s:18:\"custom_css_post_id\";s:2:\"-1\";s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";s:1:\"1\";s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";s:4:\"4210\";s:6:\"tablet\";s:4:\"4210\";s:6:\"mobile\";s:4:\"4210\";s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";s:0:\"\";}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";s:4:\"4210\";s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}','yes'),(724,'demo_importer_plus_imported_wxr_id','7','yes'),(2503,'wp_calendar_block_has_published_posts','1','yes'),(2672,'category_children','a:0:{}','yes'),(2673,'elementor_library_category_children','a:0:{}','yes'),(2675,'_demo_importer_posts_mapping','a:2:{s:10:\"attachment\";a:47:{i:4;i:8;i:6;i:9;i:7;i:10;i:8;i:11;i:9;i:12;i:10;i:13;i:11;i:14;i:12;i:15;i:13;i:16;i:14;i:17;i:15;i:18;i:16;i:19;i:17;i:20;i:18;i:21;i:19;i:22;i:20;i:23;i:21;i:24;i:22;i:25;i:23;i:26;i:24;i:27;i:25;i:28;i:26;i:29;i:27;i:30;i:28;i:31;i:30;i:32;i:31;i:33;i:32;i:34;i:33;i:35;i:34;i:36;i:35;i:37;i:36;i:38;i:37;i:39;i:38;i:40;i:39;i:41;i:40;i:42;i:41;i:43;i:42;i:44;i:43;i:45;i:44;i:46;i:45;i:47;i:46;i:48;i:47;i:49;i:48;i:50;i:49;i:51;i:50;i:52;i:51;i:53;i:52;i:54;}s:17:\"elementor_library\";a:1:{i:29;i:4211;}}','yes'),(2676,'_demo_importer_terms_mapping','a:3:{s:8:\"category\";a:5:{i:20;i:2;i:23;i:3;i:18;i:4;i:19;i:5;i:21;i:6;}s:22:\"elementor_library_type\";a:1:{i:2;i:7;}s:8:\"nav_menu\";a:2:{i:22;i:8;i:3;i:9;}}','yes'),(2683,'_demo_importer_plus_old_site_options','a:39:{s:10:\"custom_log\";s:73:\"https://rishidemos.com/wp-content/uploads/sites/9/2021/11/Logo-Whhite.png\";s:20:\"elementor_active_kit\";s:2:\"29\";s:25:\"elementor_container_width\";s:4:\"1190\";s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"internal\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";s:0:\"\";s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:23:\"elementor_load_fa4_shim\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:14:\"h1.entry-title\";s:22:\"elementor_scheme_color\";a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}s:29:\"elementor_scheme_color-picker\";a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}s:27:\"elementor_scheme_typography\";a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}s:31:\"elementor_space_between_widgets\";s:1:\"0\";s:37:\"elementor_stretched_section_container\";s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:6:\"menu-1\";}s:14:\"page_for_posts\";s:4:\"Blog\";s:13:\"page_on_front\";s:4:\"Home\";s:13:\"show_on_front\";s:4:\"page\";s:27:\"woocommerce_cart_page_title\";s:0:\"\";s:38:\"woocommerce_change_password_page_title\";s:0:\"\";s:31:\"woocommerce_checkout_page_title\";s:0:\"\";s:35:\"woocommerce_edit_address_page_title\";s:0:\"\";s:42:\"woocommerce_enable_checkout_login_reminder\";s:2:\"no\";s:33:\"woocommerce_enable_guest_checkout\";s:3:\"yes\";s:41:\"woocommerce_enable_myaccount_registration\";s:2:\"no\";s:49:\"woocommerce_enable_signup_and_login_from_checkout\";s:2:\"no\";s:29:\"woocommerce_logout_page_title\";s:0:\"\";s:32:\"woocommerce_myaccount_page_title\";s:0:\"\";s:30:\"woocommerce_product_attributes\";s:0:\"\";s:23:\"woocommerce_product_cat\";s:0:\"\";s:28:\"woocommerce_product_cat_list\";s:0:\"\";s:42:\"woocommerce_registration_generate_username\";s:3:\"yes\";s:27:\"woocommerce_shop_page_title\";s:0:\"\";s:33:\"woocommerce_view_order_page_title\";s:0:\"\";s:11:\"ultp-widget\";s:0:\"\";}','yes'),(2684,'elementor_active_kit','4211','yes'),(2685,'elementor_container_width','1190','yes'),(2686,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(2687,'elementor_css_print_method','internal','yes'),(2688,'elementor_disable_color_schemes','yes','yes'),(2689,'elementor_disable_typography_schemes','yes','yes'),(2690,'elementor_default_generic_fonts','Sans-serif','yes'),(2691,'elementor_global_image_lightbox','yes','yes'),(2692,'elementor_load_fa4_shim','yes','yes'),(2693,'elementor_page_title_selector','h1.entry-title','yes'),(2694,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(2695,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(2696,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(2703,'woocommerce_enable_checkout_login_reminder','no','yes'),(2704,'woocommerce_enable_guest_checkout','yes','yes'),(2705,'woocommerce_enable_myaccount_registration','no','yes'),(2706,'woocommerce_enable_signup_and_login_from_checkout','no','yes'),(2707,'woocommerce_registration_generate_username','yes','yes'),(2725,'_demo_importer_plus_old_widgets_data','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:11:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";i:5;s:8:\"search-1\";i:6;s:14:\"recent-posts-1\";i:7;s:17:\"recent-comments-1\";i:8;s:10:\"archives-1\";i:9;s:12:\"categories-1\";i:10;s:6:\"meta-1\";}s:10:\"footer-one\";a:1:{i:0;s:7:\"block-7\";}s:10:\"footer-two\";a:1:{i:0;s:10:\"nav_menu-1\";}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:11:\"footer-five\";a:0:{}s:10:\"footer-six\";a:0:{}s:13:\"array_version\";i:3;}','no'),(2729,'demo_importer_plus_sites_import_complete','yes','yes'),(2738,'jetpack_content_post_details_date','1','yes'),(2739,'jetpack_content_post_details_categories','1','yes'),(2740,'jetpack_content_post_details_tags','1','yes'),(2741,'jetpack_content_post_details_author','1','yes'),(2742,'jetpack_content_post_details_comment','1','yes'),(2921,'jp_sync_retry_after_sync','','no'),(2922,'jp_sync_error_log_sync','a:1:{s:15:\"1694058511.7655\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 03:48:31 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"1\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),(3139,'_elementor_installed_time','1694094270','yes');
INSERT INTO `ajj_options` VALUES (3140,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(3141,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:69:\"Elementor\'s 2023 Black Friday Sale: The Deals You\'ve Been Waiting For\";s:7:\"excerpt\";s:152:\"Why settle for less when you can unlock the full power of Elementor? This Black Friday, we\'re offering deals so good, they\'ll make you do a double-take.\";s:7:\"created\";i:1700561623;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/black-friday-cyber-monday-2023/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:86:\"New in Elementor 3.17 - Enhance Visitor Experience With AJAX, Faster Websites and More\";s:7:\"excerpt\";s:173:\"Elementor 3.17 introduces AJAX Loading for Loop Grids, improves image loading speed, adds the ability to access past prompts and content generated by Elementor AI, and more.\";s:7:\"created\";i:1698835967;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:150:\"https://elementor.com/blog/elementor-317-loop-grid-ajax-loading-rating-widget/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(3295,'_transient_health-check-site-status-result','{\"good\":17,\"recommended\":5,\"critical\":1}','yes'),(3302,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:30:\"free_FlebnRYKdpLybyqvRFLiQP1JS\";s:8:\"features\";a:2:{s:6:\"active\";a:17:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:9:\"donations\";i:3;s:17:\"jetpack-dashboard\";i:4;s:18:\"recurring-payments\";i:5;s:11:\"republicize\";i:6;s:17:\"security-settings\";i:7;s:17:\"seo-preview-tools\";i:8;s:14:\"send-a-message\";i:9;s:15:\"social-previews\";i:10;s:18:\"upload-audio-files\";i:11;s:18:\"upload-video-files\";i:12;s:15:\"whatsapp-button\";i:13;s:25:\"social-image-auto-convert\";i:14;s:26:\"social-mastodon-connection\";i:15;s:27:\"social-instagram-connection\";i:16;s:24:\"social-multi-connections\";}s:9:\"available\";a:43:{s:7:\"akismet\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:15:\"personal-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:17:\"image-cdn-quality\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"performance-history\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:10:\"stats-paid\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes');
INSERT INTO `ajj_options` VALUES (3407,'rishi__cb_customizer_google_fonts','a:2:{s:11:\"last_update\";i:1700968164;s:5:\"fonts\";s:1143290:\"{\r\n  \"kind\": \"webfonts#webfontList\",\r\n  \"items\": [\r\n    {\r\n      \"family\": \"ABeeZee\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abhaya Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aboreto\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abril Fatface\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abyssinica SIL\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abyssinicasil/v1/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aclonica\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Acme\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/acme/v18/RrQfboBx-C5_bx3Lb23lzLk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Actor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Adamina\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Advent Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aguafina Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aguafinascript/v16/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akaya Kanadaka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akaya Telivigala\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akronim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akshar\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aladin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aladin/v18/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alatsi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alatsi/v9/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Albert Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aldrich\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alef\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aleo\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alex Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alexbrush/v20/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alfa Slab One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alike\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alike Angular\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alkalami\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alkalami/v1/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allan/v20/ea8XadU7WuTxEtb2P9SF8nZE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/allan/v20/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allerta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allerta Stencil\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allison\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allura\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allura/v18/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almarai\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendra/v22/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/almendra/v22/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendradisplay/v25/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Collegiate One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Inline One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Pinstripe\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amarante\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amarante/v22/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amaranth\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amatic SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amethysta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiko\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiri\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiri/v24/J7aRnpd8CGxBHqUpvrIw74NL.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/amiri/v24/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amiri/v24/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/amiri/v24/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiri Quran\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amita\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anaheim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Andada Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Andika\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/andika/v22/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/andika/v22/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/andika/v22/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/andika/v22/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Bangla\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Latin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Odia\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Angkor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Annie Use Your Telescope\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anonymous Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic Didone\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anton\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antonio\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anybody\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arapey\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arbutus\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arbutus Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Architects Daughter\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo Black\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Are You Serious\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aref Ruqaa\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaa/v23/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaa/v23/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aref Ruqaa Ink\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arima\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arima Madurai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arimo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arizonia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Armata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/armata/v19/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arsenal\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Artifika\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/artifika/v20/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arvo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asap\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsE61qhOUX-8AEEe.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsEI1qhOUX-8AEEe.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsHk0ahOUX-8AEEe.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsHd0ahOUX-8AEEe.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylUANW3ueBVEeezU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylXINW3ueBVEeezU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylZ4KW3ueBVEeezU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylacKW3ueBVEeezU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asap Condensed\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asset\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Assistant\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Astloch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asul\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Athiti\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atkinson Hyperlegible\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atma\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/atma/v15/uK_84rqWc-Eom25bDj8WIv4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atomic Age\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aubrey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Audiowide\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Autour One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Average\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/average/v16/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Average Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Gruesa Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Sans Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Serif Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Azeret Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"B612\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"B612 Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDGothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudgothic/v6/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bizudgothic/v6/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDMincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudmincho/v6/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDPGothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpgothic/v6/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bizudpgothic/v6/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDPMincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpmincho/v6/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Babylonica\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bad Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bahiana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bahianita\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bahianita/v17/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bai Jamjuree\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bakbak One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ballet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ballet/v21/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhai 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhaijaan 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhaina 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Chettan 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Da 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Paaji 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Tamma 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Tammudu 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Thambi 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Balsamiq Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Balthazar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bangers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bangers/v20/FeVQS0BTqb0h60ACL5la2bxii28.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barriecito\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barrio\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Basic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baskervville\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baskervville/v13/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/baskervville/v13/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Battambang\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baumans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bayon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Be Vietnam Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Beau Rivage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bebas Neue\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Belgrano\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellefair\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Belleza\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellota\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellota Text\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BenchNine\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Benne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bentham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Berkshire Swash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Besley\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Beth Ellen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bevan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bevan/v20/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bevan/v20/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BhuTuka Expanded One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bhutukaexpandedone/v2/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Inline Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Inline Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Stencil Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Stencil Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bigelow Rules\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigelowrules/v23/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bigshot One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bilbo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bilbo Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BioRhyme\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BioRhyme Expanded\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Birthstone\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/birthstone/v10/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Birthstone Bounce\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Biryani\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bitter\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black And White Picture\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black Han Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black Ops One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blaka/v3/8vIG7w8722p_6kdr20D2FV5e.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka Hollow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blakahollow/v3/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka Ink\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blakaink/v5/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blinker\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/blinker/v12/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/blinker/v12/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bodoni Moda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bokor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bona Nova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bonbon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bonheur Royale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonheurroyale/v9/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Boogaloo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bowlby One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bowlby One SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyonesc/v19/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Brawler\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bree Serif\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Brygada 1918\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bubblegum Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bubbler One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Buda\",\r\n      \"variants\": [\r\n        \"300\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Buenard\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Hairline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeehairline/v18/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Inline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeinline/v11/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Shade\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Spice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Butcherman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Butterfly Kids\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin Condensed\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin Sketch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caesar Dressing\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cagliostro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cairo\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l2WgsQSaT0J0vRQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lB2gsQSaT0J0vRQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lWWgsQSaT0J0vRQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5la2gsQSaT0J0vRQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lh28sQSaT0J0vRQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lvm8sQSaT0J0vRQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l2W8sQSaT0J0vRQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l8G8sQSaT0J0vRQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cairo Play\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caladea\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Calistoga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/calistoga/v10/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Calligraffitti\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cambay\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cambo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cambo/v14/IFSqHeNEk8FJk416ok7xkPm8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Candal\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantarell\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantarell/v15/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cantarell/v15/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cantarell/v15/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cantarell/v15/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantata One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantora One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantoraone/v17/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Capriola\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/capriola/v13/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caramel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carattere\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cardo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carme\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carrois Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carrois Gothic SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carter One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Castoro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/castoro/v18/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/castoro/v18/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Catamaran\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caudex\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caveat\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caveat Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cedarville Cursive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ceviche One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chakra Petch\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Changa\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Changa One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chango\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chango/v21/2V0cKI0OB5U7WaJyz324TFUaAw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charis SIL\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charissil/v1/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charissil/v1/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charm\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charm/v10/7cHmv4oii5K0MeYvIe804WIo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charm/v10/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charmonman\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chathura\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chau Philomene One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chela One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chelsea Market\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chenla\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherish\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherish/v7/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherry Cream Soda\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherry Swash\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chewy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chicle\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chilanka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chilanka/v18/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chivo\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chivo/v17/va9I4kzIxd1KFoBvS-J3kbDP.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chonburi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cinzel\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cinzel Decorative\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Clicker Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coda Caption\",\r\n      \"variants\": [\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"800\": \"http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Codystar\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coiny\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Combo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comfortaa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v40\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comforter\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comforter Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comic Neue\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coming Soon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Commissioner\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni-IO9pOXuRoaY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi_IO9pOXuRoaY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ia_IO9pOXuRoaY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni_IO9pOXuRoaY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Oq_IO9pOXuRoaY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Aa4IO9pOXuRoaY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5D-4IO9pOXuRoaY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi4IO9pOXuRoaY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5HG4IO9pOXuRoaY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Concert One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Condiment\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Content\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Contrail One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Convergence\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cookie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Copse\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Corben\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Corinthia\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Garamond\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Infant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant SC\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Unicase\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Upright\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Courgette\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Courier Prime\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cousine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coustard\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Covered By Your Grace\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crafty Girls\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Creepster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crete Round\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crimson Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crimson Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Croissant One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/croissantone/v20/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crushed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cuprum\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cute Font\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cutive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cutive Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutivemono/v14/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Serif Display\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmserifdisplay/v10/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmserifdisplay/v10/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Serif Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmseriftext/v10/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmseriftext/v10/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Damion\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dancing Script\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dangrek\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Darker Grotesque\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"David Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dawning of a New Day\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Days One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dekko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dela Gothic One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius Unicase\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Della Respira\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Denk One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/denkone/v15/dg4m_pzhrqcFb2IzROtHpbglShon.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Devonshire\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/devonshire/v21/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dhurjati\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Didact Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/didactgothic/v19/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Diplomata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/diplomata/v24/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Diplomata SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/diplomatasc/v21/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Do Hyeon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dokdo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Domine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Donegal One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/donegalone/v20/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dongle\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dongle/v8/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Doppio One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dorsa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dosis\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DotGothic16\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dr Sugiyama\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/drsugiyama/v22/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Duru Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/durusans/v19/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DynaPuff\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dynalight\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"EB Garamond\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eagle Lake\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"East Sea Dokdo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eater\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Economica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eczar\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu NSW ACT Foundation\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu QLD Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu SA Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu TAS Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu VIC WA NT Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"El Messiri\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Electrolize\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Elsie\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elsie/v12/BCanqZABrez54yYu9slAeLgX.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/elsie/v12/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Elsie Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Emblema One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Emilys Candy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/emilyscandy/v13/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Expanded\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Semi Expanded\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Engagement\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Englebert\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Enriqueta\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ephesis\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Epilogue\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Erica One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Esteban\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/esteban/v14/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Estonia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Euphoria Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ewert\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Exo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Exo 2\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Expletus Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Explora\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fahkwang\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Familjen Grotesk\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fanwood Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Farro\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Farsan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/farsan/v18/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fascinate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fascinate Inline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Faster One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fasterone/v17/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fasthand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fauna One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/faunaone/v13/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Faustina\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Federant\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Federo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Felipa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/felipa/v19/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fenix\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Festive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Figtree\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Finger Paint\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Finlandica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Code\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasans/v16/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans Extra Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fjalla One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fjord One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flamenco\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flavors\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fleur De Leah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Block\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Circular\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Rounded\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fondamento\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fontdiner Swanky\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Forum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Francois One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/francoisone/v20/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Frank Ruhl Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fraunces\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Freckle Face\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/freckleface/v14/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredericka the Great\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/frederickathegreat/v15/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredoka\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredoka One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fredokaone/v13/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Freehand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fresca\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Frijole\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fruktur\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fugaz One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fuggles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fuggles/v8/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fuzzy Bubbles\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"GFS Didot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"GFS Neohellenic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gabriela\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gabriela/v14/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gaegu\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gafata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galdeano\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galindo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gamja Flower\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gantari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gayathri\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gelasio\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gemunu Libre\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Genos\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Book Basic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Book Plus\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Plus\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumplus/v1/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Georama\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geostar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geostar Fill\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Germania One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gideon Roman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gideonroman/v7/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gidugu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gilda Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gildadisplay/v13/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Girassol\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/girassol/v16/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Give You Glory\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glass Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glegoo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gloria Hallelujah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glory\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gluten\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goblin One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gochi Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gochihand/v16/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goldman\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goldman/v15/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/goldman/v15/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gorditas\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gothic A1\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gotu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goudy Bookletter 1911\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gowun Batang\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gowun Dodum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Graduate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grand Hotel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grandhotel/v13/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grandstander\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grape Nuts\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gravitas One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Great Vibes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/greatvibes/v14/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grechen Fuemen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grenze\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grenze Gotisch\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grey Qo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Griffy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/griffy/v21/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gruppo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gudea\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gugi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gulzar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gulzar/v5/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gupter\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gurajada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gwendolyn\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Habibi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hachi Maru Pop\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hahmlet\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Halant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/halant/v13/u-4-0qaujRI2PbsX39Jmky12eg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hammersmith One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanalei\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanalei Fill\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanaleifill/v21/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Handlee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanuman\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Happy Monkey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Harmattan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/harmattan/v15/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/harmattan/v15/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Headland One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/headlandone/v15/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Heebo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Henny Penny\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hepta Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Herr Von Muellerhoff\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/herrvonmuellerhoff/v15/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hi Melody\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hina Mincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hinamincho/v8/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Guntur\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Madurai\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Siliguri\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Vadodara\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Holtwood One SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Homemade Apple\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Homenaje\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hubballi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hurricane\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans KR\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Thai Looped\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Serif\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell DW Pica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell DW Pica SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Double Pica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Double Pica SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell English\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell English SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell French Canon\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell French Canon SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Great Primer\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Great Primer SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ibarra Real Nova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Iceberg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Iceland\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imbue\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imperial Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imprima\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imprima/v16/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inconsolata\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v31\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inder\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Indie Flower\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ingrid Darling\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inika\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inknut Antiqua\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inria Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inria Serif\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inspiration\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inter\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inter Tight\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Irish Grover\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Island Moments\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Istok Web\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Italiana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Italianno\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/italianno/v16/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Itim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/itim/v10/0nknC9ziJOYewARKkc7ZdwU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jacques Francois\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jacques Francois Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jaldi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"JetBrains Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jim Nightshade\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Joan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/joan/v1/ZXupe1oZsqWRbRdH8X1p_Ng.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jockey One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jockeyone/v15/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jolly Lodger\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jomhuria\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jomolhari\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Josefin Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Josefin Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-07-12\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jost\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Joti One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jotione/v21/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Judson\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/judson/v18/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/judson/v18/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/judson/v18/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Julee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/julee/v22/TuGfUVB3RpZPQ6ZLodgzydtk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Julius Sans One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Junge\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jura\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"kayah-li\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Just Another Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Just Me Again Down Here\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"K2D\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kadwa\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Decol\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei HarunoUmi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Opti\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Tokumin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kalam\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kameron\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kanit\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kanit/v12/nKKZ-Go6G5tXcoaSEQGodLxA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kantumruy\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruy/v21/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kantumruy Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karantina\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karla\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karma\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Katibeh\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaushan Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kavivanar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kavoon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kdam Thmor Pro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Keania One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/keaniaone/v20/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kelly Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kenia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khand\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/khand/v14/TwMA-IINQlQQ0YpVWHU_TBqO.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khmer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khula\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kings\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kirang Haerang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kite One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiteone/v20/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kiwi Maru\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Klee One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Knewave\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"KoHo\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kodchasan\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Koh Santepheap\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kolker Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kosugi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kosugi/v14/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kosugi Maru\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kotta One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Koulen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kranky\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kreon\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v32\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kristi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Krona One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Krub\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kufam\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kulim Park\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumar One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumarone/v17/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumar One Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumbh Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSyNIXIwSP0XD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqSiNIXIwSP0XD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoq0SiNIXIwSP0XD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSiNIXIwSP0XD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorYSiNIXIwSP0XD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoo0TSNIXIwSP0XD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNooNTSNIXIwSP0XD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqTSNIXIwSP0XD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopDTSNIXIwSP0XD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kurale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"La Belle Aurore\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lacquer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Laila\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lakki Reddy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lalezar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lancelot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lancelot/v22/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Langar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/langar/v26/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lateef\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lateef/v24/hESw6XVnNCxEvkbMpheEZo_H_w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lato\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHvxk6XweuBCY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lavishly Yours\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Spartan\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Leckerli One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ledger\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lekton\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lemon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lemon/v14/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lemonada\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Deca\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Exa\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Giga\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Mega\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Peta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Tera\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Zetta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 128\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 128 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Extended\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Extended Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode EAN13 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Baskerville\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Bodoni\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Caslon Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Caslon Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Franklin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Licorice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Life Savers\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lilita One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lily Script One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Limelight\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/limelight/v16/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Linden Hill\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Literata\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Liu Jian Mao Cao\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Livvic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/livvic/v13/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lobster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lobster Two\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Sketch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Solid\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Long Cang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lora\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Love Light\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Love Ya Like A Sister\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Loved by the King\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lovers Quarrel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luckiest Guy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lusitana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lustria\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luxurious Roman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousroman/v3/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luxurious Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1 Code\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1p\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 2\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS Code Latin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS Rounded 1c\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ma Shan Zheng\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Macondo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Macondo Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mada\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mada/v16/7Auwp_0qnzeSTTXMLCrX0kU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Magra\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maiden Orange\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maitree\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Major Mono Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/majormonodisplay/v12/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mako\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mali\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mali/v9/N0ba2SRONuN4eCrODlxxOd8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bU2SRONuN4SCjECn50Kd_PmA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mallanna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mandali\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manjari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manrope\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mansalva\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mansalva/v9/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manuale\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marcellus\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marcellus SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marck Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marckscript/v16/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Margarine\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/margarine/v21/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Markazi Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marko One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marmelad\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marmelad/v15/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Martel\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Martel Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marvel\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mate\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mate/v14/m8JdjftRd7WZ2z28WoXSaLU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mate/v14/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mate SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/matesc/v21/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maven Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v32\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"McLaren\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mclaren/v13/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mea Culpa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meddon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MedievalSharp\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Medula One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meera Inimai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Megrim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meie Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meow Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merienda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/merienda/v14/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merienda/v14/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merienda One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meriendaone/v16/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merriweather\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merriweather Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metal\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metal Mania\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metamorphous\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metrophobic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metrophobic/v19/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Michroma\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Milonga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miltonian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miltonian Tattoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mina\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mingzat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"lepcha\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mingzat/v1/0QIgMX5C-o-oWWyvBttkm_mv670.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miniver\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miriam Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mirza\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miss Fajardose\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mitr\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mochiy Pop One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mochiy Pop P One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Modak\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Modern Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mogra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mohave\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Molengo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Molle\",\r\n      \"variants\": [\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"italic\": \"http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monofett\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monoton\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monsieur La Doulaise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monsieurladoulaise/v14/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montaga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montagu Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MonteCarlo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montecarlo/v7/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montez\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat Alternates\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat Subrayada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moo Lah Lah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moon Dance\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moul\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moulpali\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mountains of Christmas\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mouse Memoirs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mousememoirs/v13/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr Bedfort\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrbedfort/v21/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr Dafoe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr De Haviland\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mrs Saint Delafield\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mrs Sheppards\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ms Madi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mukta/v13/iJWKBXyXfDDVXYnGp32S0H3f.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Mahee\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Malar\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Vaani\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mulish\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Murecho\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MuseoModerno\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"My Soul\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mystery Quest\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"NTR\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nabla\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"math\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nabla/v6/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Brush Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Gothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Gothic Coding\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Myeongjo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Pen Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neonderthaw\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nerko One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nerkoone/v15/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neucha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neuton\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/neuton/v18/UMBTrPtMoH62xUZyyII7civlBw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/neuton/v18/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"New Rocker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"New Tegomin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"News Cycle\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Newsreader\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Niconne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Niramit\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nixie One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nobile\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nokora\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Norican\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nosifer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Notable\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nothing You Could Do\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noticia Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Color Emoji\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"emoji\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Emoji\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"emoji\"\r\n      ],\r\n      \"version\": \"v34\",\r\n      \"lastModified\": \"2022-09-26\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Kufi Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Music\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"music\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notomusic/v14/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Naskh Arabic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Nastaliq Urdu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Rashi Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosans/v27/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Adlam\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"adlam\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Adlam Unjoined\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"adlam\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Anatolian Hieroglyphs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"anatolian-hieroglyphs\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Armenian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"armenian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v39\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Avestan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"avestan\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansavestan/v17/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Balinese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"balinese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bamum\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bamum\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bassa Vah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bassa-vah\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbassavah/v15/PN_sRee-r3f7LnqsD5sax12gjZn7mBpL_4c2VNUQptE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Batak\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"batak\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bengali\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bhaiksuki\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bhaiksuki\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Brahmi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"brahmi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Buginese\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"buginese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuginese/v15/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Buhid\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"buhid\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuhid/v17/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Canadian Aboriginal\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"canadian-aboriginal\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Carian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"carian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Caucasian Albanian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"caucasian-albanian\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Chakma\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chakma\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanschakma/v15/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cham\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cham\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cherokee\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Coptic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"coptic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cuneiform\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cuneiform\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cypriot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cypriot\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Deseret\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"deseret\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Duployan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"duployan\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Egyptian Hieroglyphs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"egyptian-hieroglyphs\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Elbasan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"elbasan\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Elymaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"elymaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ethiopic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v38\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Georgian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"georgian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v36\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Glagolitic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"glagolitic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gothic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Grantha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"grantha\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gunjala Gondi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gunjala-gondi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans HK\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-hongkong\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hanifi Rohingya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hanifi-rohingya\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hanunoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hanunoo\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanunoo/v15/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hatran\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hatran\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v38\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Imperial Aramaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"imperial-aramaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Indic Siyaq Numbers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"indic-siyaq-numbers\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Inscriptional Pahlavi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"inscriptional-pahlavi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Inscriptional Parthian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"inscriptional-parthian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans JP\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v42\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Javanese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"javanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans KR\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kaithi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kaithi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskaithi/v15/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kayah Li\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kayah-li\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kharoshthi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kharoshthi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskharoshthi/v15/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khmer\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khojki\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khojki\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhojki/v15/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khudawadi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khudawadi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhudawadi/v15/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lao\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lao\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lepcha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lepcha\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslepcha/v15/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Limbu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"limbu\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslimbu/v17/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Linear A\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"linear-a\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Linear B\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"linear-b\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lisu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"lisu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lycian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lycian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lydian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lydian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mahajani\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mahajani\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mandaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mandaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Manichaean\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"manichaean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Marchen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"marchen\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmarchen/v15/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Masaram Gondi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"masaram-gondi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmasaramgondi/v15/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Math\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"math\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mayan Numerals\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mayan-numerals\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Medefaidrin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"medefaidrin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Meetei Mayek\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"meetei-mayek\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Meroitic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"meroitic\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Miao\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"miao\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Modi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"modi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmodi/v15/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mongolian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mongolian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmongolian/v15/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mro\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmro/v15/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Multani\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"multani\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmultani/v15/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Myanmar\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans N Ko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nko\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnko/v17/6NUP8FqDKBaKKjnr6P8v-sxPpvVBVNmme3gf.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Nabataean\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nabataean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans New Tai Lue\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"new-tai-lue\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewtailue/v15/H4c5BW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wwY55O4AS32A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Newa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"newa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewa/v15/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Nushu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nushu\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnushu/v18/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ogham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ogham\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ol Chiki\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ol-chiki\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Hungarian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-hungarian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Italic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-italic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old North Arabian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-north-arabian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Permic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-permic\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Persian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-persian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Sogdian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-sogdian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old South Arabian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-south-arabian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Turkic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-turkic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Oriya\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Osage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"osage\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosage/v15/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Osmanya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"osmanya\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosmanya/v15/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Pahawh Hmong\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"pahawh-hmong\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspahawhhmong/v15/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Palmyrene\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"palmyrene\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Pau Cin Hau\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"pau-cin-hau\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspaucinhau/v16/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Phags Pa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"phags-pa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Phoenician\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"phoenician\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Psalter Pahlavi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"psalter-pahlavi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Rejang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"rejang\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrejang/v15/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Runic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"runic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Samaritan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"samaritan\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Saurashtra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"saurashtra\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssaurashtra/v15/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sharada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sharada\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssharada/v15/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Shavian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"shavian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Siddham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"siddham\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssiddham/v15/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sinhala\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sogdian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sogdian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sora Sompeng\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sora-sompeng\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Soyombo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"soyombo\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sundanese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sundanese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Syloti Nagri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"syloti-nagri\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssylotinagri/v15/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Symbols\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"symbols\"\r\n      ],\r\n      \"version\": \"v36\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Symbols 2\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"symbols\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols2/v15/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Syriac\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"syriac\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkwAKuMeZjqPnXgyqribqzQqgW0D-e9XaRE7sX5Cg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkxAKuMeZjqPnXgyqribqzQqgW0DweafY5q4szgE-Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans TC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-traditional\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tagalog\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tagalog\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagalog/v15/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tagbanwa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tagbanwa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagbanwa/v15/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Le\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-le\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaile/v15/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Tham\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-tham\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Viet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-viet\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaiviet/v15/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Takri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"takri\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstakri/v15/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tamil Supplement\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tamil-supplement\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thaana\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"thaana\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thai Looped\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tifinagh\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tifinagh\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstifinagh/v15/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tirhuta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tirhuta\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ugaritic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ugaritic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Vai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vai\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Wancho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"wancho\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Warang Citi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"warang-citi\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Yi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"yi\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansyi/v16/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Zanabazar Square\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"zanabazar-square\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanszanabazarsquare/v15/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Ahom\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ahom\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifahom/v17/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Armenian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"armenian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Balinese\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"balinese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Bengali\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Dogra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"dogra\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdogra/v15/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Ethiopic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Georgian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"georgian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Grantha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"grantha\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif HK\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-hongkong\",\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif JP\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif KR\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Khmer\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Lao\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lao\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Myanmar\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Nyiakeng Puachue Hmong\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nyiakeng-puachue-hmong\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKhqPDFvbZkrZmb0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKiiPDFvbZkrZmb0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKsSIDFvbZkrZmb0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKv2IDFvbZkrZmb0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif SC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Sinhala\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif TC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-traditional\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tangut\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tangut\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tibetan\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Yezidi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"yezidi\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Traditional Nushu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nushu\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Cut\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Flat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Oval\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Round\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Slim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Square\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Numans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nunito\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nunito Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nuosu SIL\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"yi\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nuosusil/v2/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Odibee Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Odor Mean Chey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Offside\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/offside/v20/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oi/v15/w8gXH2EuRqtaut6yjBOG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Old Standard TT\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oldenburg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ole\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oleo Script\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oleo Script Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oooh Baby\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ooohbaby/v3/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Open Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v34\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oranienbaum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orbitron\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oregano\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orelega One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orienta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orienta/v13/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Original Surfer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oswald\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v49\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Outfit\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Over the Rainbow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overlock\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overlock SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overpass\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overpass Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ovo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxanium\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxygen\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxygen Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxygenmono/v13/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans Caption\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Serif\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Serif Caption\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pacifico\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Padauk\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/padauk/v15/RrQRboJg-id7OnbBa0_g3LlYbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/padauk/v15/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Palanquin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Palanquin Dark\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pangolin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Paprika\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Parisienne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passero One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passion One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passions Conflict\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pathway Gothic One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pathwaygothicone/v14/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patrick Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhand/v19/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patrick Hand SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pattaya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pattaya/v12/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patua One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pavanam\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Paytone One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/paytoneone/v18/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Peddana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Peralta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Permanent Marker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petemoss\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petit Formal Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/petitformalscript/v13/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petrona\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Philosopher\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Piazzolla\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Piedra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/piedra/v21/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pinyon Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pinyonscript/v17/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pirata One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Plaster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Play\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playball\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playball/v16/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playfair Display\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playfair Display SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Plus Jakarta Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Podkova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poiret One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poller One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poly\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pompiere\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pontano Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pontanosans/v13/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poor Story\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poppins\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Port Lligat Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Port Lligat Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Potta One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pragati Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Praise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Preahvihear\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Press Start 2P\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pressstart2p/v14/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pridi\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Princess Sofia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/princesssofia/v21/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prociono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prompt\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prosto One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Proza Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Public Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Puppies Play\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/puppiesplay/v5/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Puritan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Purple Purse\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qahiri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qahiri/v7/tsssAp1RZy0C_hGuU3Chrnmupw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quando\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quantico\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quattrocento\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quattrocento Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Questrial\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quicksand\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quintessential\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qwigley\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qwitcher Grypen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Racing Sans One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Radio Canada\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Radley\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rajdhani\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rakkas\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Raleway\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Raleway Dots\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ramabhadra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ramaraja\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rambla\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rammetto One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rammettoone/v14/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rampart One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ranchers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ranchers/v13/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rancho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ranga\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ranga/v17/C8ct4cYisGb28p6CLDwZwmGE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ranga/v17/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rasa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rationale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ravi Prakash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Readex Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQzfm7w3bk38hTB8.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQwBm7w3bk38hTB8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxfm7w3bk38hTB8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxtm7w3bk38hTB8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQyBnLw3bk38hTB8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQy4nLw3bk38hTB8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Recursive\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v35\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Display\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Text\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Rose\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redacted\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redacted Script\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redressed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi Fun\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi Ink\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufiink/v4/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reenie Beanie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reggae One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reggaeone/v14/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Revalia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rhodium Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ribeye\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ribeye/v21/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ribeye Marrow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Righteous\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/righteous/v13/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Risque\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Road Rage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Condensed\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Flex\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Serif\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rochester\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rock Salt\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"RocknRoll One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rokkitt\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Romanesco\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ropa Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rosario\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rosarivo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rouge Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rowdies\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rozha One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Beastly\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Bubbles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbubbles/v2/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Burned\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Dirt\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdirt/v1/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Distressed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Glitch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Iso\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikiso/v1/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Marker Hatch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Maze\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmaze/v1/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Microbe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Mono One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmonoone/v14/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Moonrocks\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Puddles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Wet Paint\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rufina\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruge Boogie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rugeboogie/v24/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruluko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rum Raisin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruslan Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Russo One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruthie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rye\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"STIX Two Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sacramento\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sahitya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sail\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Extra Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Stencil One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Salsa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sanchez\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sancreek\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sansita\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sansita/v10/QldONTRRphEb_-V7HBm7TXFf3qw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sansita Swashed\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarabun\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarala\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarina\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarpanch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sassy Frass\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Satisfy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sawarabi Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sawarabi Mincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scada/v14/RLpxK5Pv5qumeWJoxzUobkvv.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/scada/v14/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scheherazade New\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scheherazadenew/v12/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/scheherazadenew/v12/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Schoolbell\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scope One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Seaweed Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Secular One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sedgwick Ave\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sedgwick Ave Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Send Flowers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sevillana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Seymour One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shadows Into Light\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shadows Into Light Two\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolighttwo/v13/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shalimar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shanti\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share Tech\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share Tech Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Antique\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Antique B1\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Mincho\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Mincho B1\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shojumaru\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Short Stack\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shrikhand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shrikhand/v11/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Siemreap\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sigmar One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Signika\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Signika Negative\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Silkscreen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Simonetta\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Single Day\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sintony\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sirin Stencil\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Six Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Skranji\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slabo 13px\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slabo 27px\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slackey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smokum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smooch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smooch Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smythe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sniglet\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Snippet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Snowburst One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sofadi One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sofia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Solway\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/solway/v15/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Song Myung\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sonsie One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sora\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sorts Mill Goudy\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Code Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Sans 3\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Sans Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Serif 4\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Serif Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Space Grotesk\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Space Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Special Elite\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spectral\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spectral SC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spicy Rice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spinnaker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spirax\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Splash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/splash/v1/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spline Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spline Sans Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Squada One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Square Peg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sree Krushnadevaraya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sriracha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sriracha/v10/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Srisakdi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Staatliches\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stalemate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stalinist One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v54\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stardos Stencil\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stick\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stick No Bills\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stint Ultra Condensed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stint Ultra Expanded\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stoke\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Strait\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/strait/v13/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Style Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stylescript/v7/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stylish\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sue Ellen Francisco\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suez One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sulphur Point\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sumana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sunflower\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sunshiney\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Supermercado One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sura\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sura/v15/SZc23FL5PbyzFf5UWzXtjUM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sura/v15/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suranna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suravaram\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suwannaphum\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Swanky and Moo Moo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syncopate\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne Tactile\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tai Heritage Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tai-viet\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/taiheritagepro/v1/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/taiheritagepro/v1/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tajawal\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tangerine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tapestry\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Taprom\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tauri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Taviraj\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Teko\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/teko/v15/LYjNdG7kmE0gTaR3pCtBtVs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Telex\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/telex/v14/ieVw2Y1fKWmIO9fTB1piKFIf.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tenali Ramakrishna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tenor Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Text Me One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/textmeone/v20/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Texturina\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Thasadith\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"The Girl Next Door\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"The Nautigal\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tienne\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tillana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Timmana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tinos\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Bangla\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirobangla/v4/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirobangla/v4/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Hindi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v3/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v3/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Marathi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v3/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v3/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Sanskrit\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v3/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v3/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Gurmukhi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirogurmukhi/v4/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirogurmukhi/v4/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Kannada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirokannada/v4/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirokannada/v4/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Tamil\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirotamil/v4/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirotamil/v4/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Telugu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirotelugu/v4/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirotelugu/v4/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Titan One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Titillium Web\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tomorrow\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tourney\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trade Winds\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Train One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trirong\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/trirong/v11/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trispace\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trocchi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trocchi/v14/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trochut\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Truculenta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trykker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tulpen One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Turret Road\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Twinkle Star\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu Condensed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Uchen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ultra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Uncial Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Underdog\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/underdog/v22/CHygV-jCElj7diMroVSiU14GN2Il.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unica One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unicaone/v13/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"UnifrakturCook\",\r\n      \"variants\": [\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"700\": \"http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"UnifrakturMaguntia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unkempt\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unlock\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unlock/v22/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unna\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Updock\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Urbanist\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"VT323\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vampiro One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varela\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varela Round\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/varelaround/v19/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varta\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vast Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vazirmatn\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vesper Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Viaoda Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vibes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vibur\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vidaloka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Viga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Voces\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Volkhov\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vollkorn\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vollkorn SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Voltaire\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/voltaire/v15/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vujahday Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vujahdayscript/v3/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Waiting for the Sunrise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wallpoet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Walter Turncoat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Warnes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/warnes/v22/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Water Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Waterfall\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wellfleet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wendy One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wendyone/v14/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Whisper\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"WindSong\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/windsong/v7/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/windsong/v7/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wire One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Work Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Xanh Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yaldevi\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yanone Kaffeesatz\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yantramanav\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yatra One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yellowtail\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yeon Sung\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yeseva One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yesteryear\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yomogi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yrsa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Boku\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Mai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Syuku\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yusei Magic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yuseimagic/v11/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL KuaiLe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolkuaile/v17/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL QingKe HuangYou\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v13/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL XiaoWei\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolxiaowei/v10/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Antique\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenantique/v10/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Antique Soft\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenantiquesoft/v10/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Dots\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kaku Gothic Antique\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kaku Gothic New\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kurenaido\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkurenaido/v10/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Loop\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Maru Gothic\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Old Mincho\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Tokyo Zoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zeyada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zhi Mang Xing\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zilla Slab\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zilla Slab Highlight\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    }\r\n  ]\r\n}\";}','no');
INSERT INTO `ajj_options` VALUES (3425,'_elementor_settings_update_time','1694139173','yes'),(3426,'elementor_allow_tracking','no','yes'),(3427,'elementor_google_maps_api_key','','yes'),(3428,'elementor_editor_break_lines','','yes'),(3429,'elementor_unfiltered_files_upload','','yes'),(3430,'elementor_google_font','1','yes'),(3431,'elementor_font_display','auto','yes'),(3432,'elementor_meta_generator_tag','','yes'),(3433,'elementor_experiment-e_font_icon_svg','active','yes'),(3434,'elementor_experiment-container','active','yes'),(3435,'elementor_experiment-container_grid','active','yes'),(3436,'elementor_experiment-editor_v2','active','yes'),(3437,'elementor_experiment-landing-pages','active','yes'),(3438,'elementor_experiment-nested-elements','active','yes'),(3439,'elementor_experiment-e_lazyload','active','yes'),(3440,'elementor_experiment-e_global_styleguide','active','yes'),(3441,'elementor_experiment-e_dom_optimization','active','yes'),(3442,'elementor_experiment-e_optimized_assets_loading','active','yes'),(3443,'elementor_experiment-e_optimized_css_loading','active','yes'),(3444,'elementor_experiment-additional_custom_breakpoints','active','yes'),(3445,'elementor_experiment-e_swiper_latest','active','yes'),(3616,'elementor_pro_license_key','*********','yes'),(3617,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1711822245;s:5:\"value\";s:71:\"{\"success\":true,\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":[]}\";}','yes'),(3622,'elementor_pro_version','3.14.1','yes'),(3623,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3634,'_elementor_pro_installed_time','1694141765','yes'),(3635,'elementor_submissions_db_version','5','yes'),(3640,'elementor_fonts_manager_font_types','a:0:{}','yes'),(3641,'elementor_fonts_manager_fonts','a:0:{}','yes'),(3642,'elementor_custom_icon_sets_config','a:0:{}','yes'),(3701,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1711474828;}','yes'),(3885,'deleted_plugin','a:7:{s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:7:\"version\";s:4:\"21.1\";s:5:\"title\";s:9:\"Yoast SEO\";s:3:\"url\";s:18:\"https://yoa.st/1uj\";s:6:\"active\";b:0;s:2:\"mu\";b:0;s:12:\"auto_updates\";b:1;}','yes'),(4761,'elementor_log','a:42:{s:32:\"e47048c9fb16136dda980d1b731f048a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-29 22:28:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-29 22:28:56\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"898b6de0cccb03b6bd05756449f571ad\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-29 22:28:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-29 22:28:56\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"9c816e25932475bd502a3937f1059ac2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-29 22:28:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-29 22:28:56\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"415df81fa8c65140da4c61cb552bbe5c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-29 22:28:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-29 22:28:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"dca9756306e61342b1a52b31b3fdf5d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-01-29 22:28:56\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-01-29 22:28:56\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.3\";s:2:\"to\";s:6:\"3.19.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f959228b90464fe9d5ef2403448b56e5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-05 15:01:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-05 15:01:24\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d721ccec02e942cdb249fa39388de7fe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-05 15:01:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-05 15:01:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"8b28b0353f5f4f88aa48c493fcc0bb0c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-05 15:01:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-05 15:01:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"6fd162ad26fd8618d8ced90efc51a31d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-05 15:01:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-05 15:01:24\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"d44e099e747a3ee5ed5a0f25aabea8e6\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-05 15:01:24\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-05 15:01:24\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.0\";s:2:\"to\";s:6:\"3.19.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5443747b014087d65d216721f97c0a9d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-08 00:49:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a14e98cc6ff00d22dad5de7b515f7da7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-08 00:49:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e6d278fb7379f984eca44413aeb21754\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-08 00:49:54\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"748efe2e68ff77c5754c351ea66fbc58\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-08 00:49:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"db4946218f5bf4c6a00a38f5da81aa2c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-08 00:49:54\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.1\";s:2:\"to\";s:6:\"3.19.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6c8f3cd672ebb255f7d9a354d23891c5\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2024-02-08 00:49:54\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:229;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2024-03-18 10:58:38\";i:1;s:19:\"2024-03-19 02:09:11\";i:2;s:19:\"2024-03-19 03:41:45\";i:3;s:19:\"2024-03-19 05:15:44\";i:4;s:19:\"2024-03-19 16:40:59\";i:5;s:19:\"2024-03-19 16:41:03\";i:6;s:19:\"2024-03-19 16:41:03\";i:7;s:19:\"2024-03-19 17:55:49\";i:8;s:19:\"2024-03-19 20:36:24\";i:9;s:19:\"2024-03-21 02:54:13\";i:10;s:19:\"2024-03-21 02:54:14\";i:11;s:19:\"2024-03-21 15:27:25\";i:12;s:19:\"2024-03-22 08:21:43\";i:13;s:19:\"2024-03-22 17:39:10\";i:14;s:19:\"2024-03-23 01:52:46\";i:15;s:19:\"2024-03-23 08:33:40\";i:16;s:19:\"2024-03-23 17:35:02\";i:17;s:19:\"2024-03-24 06:03:17\";i:18;s:19:\"2024-03-24 11:32:07\";i:19;s:19:\"2024-03-24 15:02:08\";i:20;s:19:\"2024-03-25 02:47:40\";i:21;s:19:\"2024-03-25 14:01:55\";i:22;s:19:\"2024-03-26 04:14:28\";i:23;s:19:\"2024-03-26 10:02:00\";i:24;s:19:\"2024-03-26 17:40:32\";i:25;s:19:\"2024-03-26 19:54:14\";i:26;s:19:\"2024-03-27 02:33:55\";i:27;s:19:\"2024-03-27 08:59:08\";i:28;s:19:\"2024-03-27 17:43:43\";i:29;s:19:\"2024-03-28 04:41:15\";i:30;s:19:\"2024-03-28 04:41:16\";i:31;s:19:\"2024-03-28 04:41:16\";i:32;s:19:\"2024-03-28 04:41:18\";i:33;s:19:\"2024-03-28 04:41:19\";i:34;s:19:\"2024-03-28 04:41:23\";i:35;s:19:\"2024-03-28 04:41:24\";i:36;s:19:\"2024-03-28 04:41:26\";i:37;s:19:\"2024-03-28 04:41:28\";i:38;s:19:\"2024-03-28 17:37:50\";i:39;s:19:\"2024-03-29 02:04:23\";i:40;s:19:\"2024-03-29 18:02:00\";i:41;s:19:\"2024-03-30 02:01:09\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";s:4:\"file\";s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/plugins/elementor/core/experiments/manager.php\";s:4:\"line\";i:163;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/plugins/elementor/core/experiments/manager.php\";s:7:\"\0*\0line\";i:163;}s:32:\"b6c742bae10192a9ef830cb5fbf4f82c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-26 22:10:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 22:10:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"65a2d98f37a515b6ff3c7f3404907f6f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-26 22:10:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 22:10:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"c1ee31d11208d430fe40dbe5762e2bfe\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-26 22:10:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 22:10:14\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"665932b7f4de5ebd6242b49e1be64e1b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-26 22:10:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 22:10:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"dd41dd755837a3a4a3d3012d7c1333e0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-26 22:10:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-26 22:10:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.2\";s:2:\"to\";s:6:\"3.19.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cd36bf6970fe957c8c9c54efc9a51c60\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 14:21:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 14:21:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"5e2f7e6c44325ea8115787806f9bdbfa\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 14:21:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 14:21:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"39090dc0facbb2668db95edce754ccab\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 14:21:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 14:21:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"7a3990a33ebbd8d3834d31ddfa4d1502\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 14:21:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 14:21:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"95603b92e37357963d33b54223cd842a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-02-28 14:21:50\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-02-28 14:21:50\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.3\";s:2:\"to\";s:6:\"3.19.4\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"97e7f09796236b11715935200a3893d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-11 15:43:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-11 15:43:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"d241918072d3015bea242362675970ce\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-11 15:43:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-11 15:43:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"48814563e5d37ede3d372915c09c16b0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-11 15:43:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-11 15:43:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"83440a12f3718ca79cd7efab57eacfc8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-11 15:43:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-11 15:43:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"366e3a3932faab938e6685348c32edc0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-11 15:43:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-11 15:43:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.19.4\";s:2:\"to\";s:6:\"3.20.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"95916080ea1db17a4990520a2e960d31\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 15:19:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 15:19:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"239bd9a649ec5c400ece79abb7fffa7f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 15:19:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 15:19:15\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"d1531b9feca13a78cc05b0883a5e75f2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 15:19:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 15:19:15\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"bb3d5230e92e3bbfc1eb151b784bac8a\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 15:19:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 15:19:15\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"384f1e473192362dad76d443ee38aecf\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-13 15:19:15\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-13 15:19:15\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.0\";s:2:\"to\";s:6:\"3.20.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"be7055906f8fda86b03089c16f9fad22\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:12\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3e7d21c1f982d5994a8d222dd4e6cb7b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:12\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"87a5d19bb8bcd16e2dfaa78242819490\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:12\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"e4dc39fb5ad132c32b3cbbf0fb1e179c\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:12\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"680fdea44312941144093edf6088b4ec\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:12\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:12\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8e2593a952e823ed24178ad6532606f9\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2024-03-21 02:54:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2024-03-21 02:54:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.20.1\";s:2:\"to\";s:6:\"3.20.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(5230,'site_logo','4758','yes'),(5636,'wpcom_publish_posts_with_markdown','1','yes'),(6165,'jpsq_sync-1696032990.891330-966635-5','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:48:\"jetpack_sync_settings_custom_queue_table_enabled\";i:1;s:1:\"0\";i:2;i:1;}i:2;i:0;i:3;d:1696032990.8911190032958984375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:270:\"https://healthyfoodrestaurant.in/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=sLw%5Eb1ntnADcPA%234kGbLTYmH3V2%295%23fR%3A1%3A0&timestamp=1696032989&nonce=PLN7MdG0sS&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=%2B9%2FGONi0WGvgPFstNPFoN1rRh6w%3D\";}}','no'),(6816,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:28:\"arpitkmaurya1@protonmail.com\";s:7:\"version\";s:5:\"6.4.3\";s:9:\"timestamp\";i:1706752422;}','no'),(6817,'nfd_module_onboarding_flow','a:16:{s:7:\"version\";s:5:\"1.0.2\";s:8:\"isViewed\";a:0:{}s:10:\"isComplete\";i:0;s:9:\"hasExited\";i:0;s:9:\"isSkipped\";a:0:{}s:11:\"currentStep\";s:26:\"/step/wp-setup/get-started\";s:9:\"createdAt\";i:1697154392;s:9:\"updatedAt\";i:0;s:4:\"data\";a:16:{s:8:\"siteType\";a:3:{s:7:\"referTo\";s:4:\"site\";s:7:\"primary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:9:\"secondary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}}s:14:\"wpComfortLevel\";s:1:\"0\";s:11:\"topPriority\";a:1:{s:9:\"priority1\";s:0:\"\";}s:8:\"blogName\";s:0:\"\";s:15:\"blogDescription\";s:0:\"\";s:8:\"siteLogo\";a:2:{s:2:\"id\";i:0;s:3:\"url\";s:0:\"\";}s:8:\"accounts\";a:0:{}s:5:\"theme\";a:3:{s:8:\"template\";s:0:\"\";s:10:\"stylesheet\";s:0:\"\";s:9:\"variation\";s:0:\"\";}s:12:\"customDesign\";b:0;s:10:\"colorStyle\";s:0:\"\";s:9:\"fontStyle\";s:0:\"\";s:10:\"partHeader\";s:0:\"\";s:9:\"sitePages\";a:2:{s:8:\"homepage\";s:0:\"\";s:5:\"other\";a:0:{}}s:12:\"siteFeatures\";a:0:{}s:8:\"chapters\";a:0:{}s:10:\"comingSoon\";b:0;}s:12:\"currentFlows\";a:0:{}s:20:\"isFirstNFDOnboarding\";b:1;s:8:\"siteType\";s:4:\"blog\";s:9:\"ownerType\";s:8:\"personal\";s:15:\"isEcommercePlan\";b:0;s:12:\"doesCommerce\";b:0;s:12:\"storeDetails\";a:1:{s:11:\"productInfo\";a:2:{s:13:\"product_count\";s:0:\"\";s:13:\"product_types\";a:0:{}}}}','yes'),(6818,'onboarding_experience_level','0','yes'),(7020,'ht_ctc_othersettings','a:9:{s:7:\"an_type\";s:12:\"no-animation\";s:8:\"an_delay\";s:1:\"0\";s:6:\"an_itr\";s:1:\"1\";s:11:\"show_effect\";s:11:\"From Corner\";s:3:\"amp\";s:1:\"1\";s:15:\"g_an_event_name\";s:14:\"chat: {number}\";s:4:\"g_an\";s:2:\"ga\";s:16:\"google_analytics\";s:1:\"1\";s:8:\"fb_pixel\";s:1:\"1\";}','yes'),(7021,'ht_ctc_chat_options','a:29:{s:2:\"cc\";s:0:\"\";s:3:\"num\";s:0:\"\";s:6:\"number\";s:13:\"+919628444458\";s:10:\"pre_filled\";s:44:\"hi I got your Information from your Website.\";s:14:\"call_to_action\";s:11:\"WhatsApp us\";s:13:\"style_desktop\";s:3:\"3_1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"15px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"15px\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:4:\"intl\";s:1:\"1\";s:13:\"position_type\";s:5:\"fixed\";s:13:\"same_settings\";s:1:\"1\";s:20:\"position_type_mobile\";s:5:\"fixed\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";s:12:\"url_target_d\";s:6:\"_blank\";s:15:\"url_structure_d\";s:7:\"default\";s:15:\"url_structure_m\";s:7:\"default\";s:15:\"display_desktop\";s:4:\"show\";s:14:\"display_mobile\";s:4:\"show\";s:7:\"display\";a:13:{s:14:\"global_display\";s:4:\"show\";s:4:\"home\";s:1:\"g\";s:5:\"posts\";s:1:\"g\";s:5:\"pages\";s:1:\"g\";s:7:\"archive\";s:1:\"g\";s:8:\"category\";s:1:\"g\";s:8:\"page_404\";s:1:\"g\";s:14:\"e-landing-page\";s:1:\"g\";s:17:\"elementor_library\";s:1:\"g\";s:17:\"list_hideon_pages\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";}}','yes'),(7022,'ht_ctc_s2','a:5:{s:11:\"s2_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25D366\";s:8:\"cta_type\";s:5:\"hover\";s:13:\"cta_font_size\";s:4:\"15px\";}','yes'),(7023,'ht_ctc_plugin_details','a:13:{s:7:\"version\";s:4:\"3.34\";s:18:\"first_install_time\";i:1697265595;s:2:\"v3\";i:1697265595;s:6:\"v3_2_5\";i:1697265595;s:6:\"v3_3_3\";i:1697265595;s:6:\"v3_3_5\";i:1697265595;s:4:\"v3_7\";i:1697265595;s:4:\"v3_8\";i:1697265595;s:4:\"v3_9\";i:1697265595;s:5:\"v3_19\";i:1697265595;s:5:\"v3_23\";i:1697265595;s:5:\"v3_28\";i:1697265595;s:5:\"v3_31\";i:1702382519;}','yes'),(7035,'ht_ctc_group','a:17:{s:8:\"group_id\";s:0:\"\";s:14:\"call_to_action\";s:14:\"WhatsApp Group\";s:13:\"style_desktop\";s:1:\"4\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:4:\"left\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:4:\"left\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(7036,'ht_ctc_share','a:17:{s:10:\"share_text\";s:34:\"Checkout this Awesome page {{url}}\";s:14:\"call_to_action\";s:14:\"WhatsApp Share\";s:13:\"style_desktop\";s:1:\"1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:3:\"top\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:3:\"top\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(7037,'ht_ctc_woo_options','a:2:{s:14:\"woo_pre_filled\";s:0:\"\";s:18:\"woo_call_to_action\";s:0:\"\";}','yes'),(7038,'ht_ctc_s1','a:4:{s:13:\"s1_text_color\";s:0:\"\";s:11:\"s1_bg_color\";s:0:\"\";s:13:\"s1_icon_color\";s:7:\"#25d366\";s:12:\"s1_icon_size\";s:4:\"16px\";}','yes'),(7039,'ht_ctc_s3','a:4:{s:11:\"s3_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";s:8:\"cta_type\";s:4:\"hide\";}','yes'),(7040,'ht_ctc_s3_1','a:9:{s:11:\"s3_img_size\";s:4:\"40px\";s:11:\"s3_bg_color\";s:7:\"#25D366\";s:17:\"s3_bg_color_hover\";s:7:\"#25D366\";s:10:\"s3_padding\";s:4:\"14px\";s:13:\"s3_box_shadow\";s:1:\"1\";s:19:\"s3_box_shadow_hover\";s:1:\"1\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(7041,'ht_ctc_s4','a:5:{s:13:\"s4_text_color\";s:7:\"#7f7d7d\";s:11:\"s4_bg_color\";s:7:\"#e4e4e4\";s:10:\"s4_img_url\";s:0:\"\";s:15:\"s4_img_position\";s:4:\"left\";s:11:\"s4_img_size\";s:4:\"32px\";}','yes'),(7042,'ht_ctc_s5','a:12:{s:9:\"s5_line_1\";s:0:\"\";s:9:\"s5_line_2\";s:35:\"We will respond as soon as possible\";s:15:\"s5_line_1_color\";s:7:\"#000000\";s:15:\"s5_line_2_color\";s:7:\"#000000\";s:19:\"s5_background_color\";s:7:\"#ffffff\";s:15:\"s5_border_color\";s:7:\"#dddddd\";s:6:\"s5_img\";s:0:\"\";s:13:\"s5_img_height\";s:4:\"70px\";s:12:\"s5_img_width\";s:4:\"70px\";s:17:\"s5_content_height\";s:4:\"70px\";s:16:\"s5_content_width\";s:5:\"270px\";s:15:\"s5_img_position\";s:5:\"right\";}','yes'),(7043,'ht_ctc_s6','a:4:{s:12:\"s6_txt_color\";s:0:\"\";s:21:\"s6_txt_color_on_hover\";s:0:\"\";s:17:\"s6_txt_decoration\";s:0:\"\";s:26:\"s6_txt_decoration_on_hover\";s:0:\"\";}','yes'),(7044,'ht_ctc_s7','a:10:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:15:\"s7_border_color\";s:7:\"#25D366\";s:21:\"s7_border_color_hover\";s:7:\"#25d366\";s:16:\"s7_border_radius\";s:3:\"50%\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(7045,'ht_ctc_s7_1','a:7:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:10:\"s7_bgcolor\";s:7:\"#25D366\";s:16:\"s7_bgcolor_hover\";s:7:\"#00d34d\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(7046,'ht_ctc_s8','a:10:{s:12:\"s8_txt_color\";s:7:\"#ffffff\";s:21:\"s8_txt_color_on_hover\";s:7:\"#ffffff\";s:11:\"s8_bg_color\";s:7:\"#26a69a\";s:20:\"s8_bg_color_on_hover\";s:7:\"#26a69a\";s:13:\"s8_icon_color\";s:7:\"#ffffff\";s:22:\"s8_icon_color_on_hover\";s:7:\"#ffffff\";s:16:\"s8_icon_position\";s:4:\"left\";s:12:\"s8_text_size\";s:0:\"\";s:12:\"s8_icon_size\";s:0:\"\";s:11:\"s8_btn_size\";s:3:\"btn\";}','yes'),(7047,'ht_ctc_s99','a:6:{s:19:\"s99_dekstop_img_url\";s:0:\"\";s:18:\"s99_mobile_img_url\";s:0:\"\";s:22:\"s99_desktop_img_height\";s:4:\"50px\";s:21:\"s99_desktop_img_width\";s:0:\"\";s:21:\"s99_mobile_img_height\";s:4:\"50px\";s:20:\"s99_mobile_img_width\";s:0:\"\";}','yes'),(7048,'ht_ctc_one_time','a:2:{s:13:\"first_version\";s:4:\"3.30\";s:18:\"first_install_time\";i:1697265602;}','yes'),(7060,'ht_ctc_greetings_options','a:1:{s:15:\"fallback_values\";s:3:\"yes\";}','yes'),(7062,'ht_ctc_admin_pages','a:1:{s:5:\"count\";i:2;}','yes'),(7142,'jetpack_site_icon_url','https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/cropped-7776956.jpg','yes'),(8691,'wp_attachment_pages_enabled','1','yes'),(8692,'db_upgraded','','yes'),(9698,'ht_ctc_notices','a:2:{s:7:\"version\";s:6:\"3.30.1\";s:10:\"pro_banner\";i:1700968157;}','yes'),(9705,'can_compress_scripts','0','yes'),(9740,'staging_config','a:5:{s:13:\"creation_date\";s:12:\"Nov 26, 2023\";s:14:\"production_dir\";s:50:\"/home3/websitex/public_html/healthyfoodrestaurant/\";s:14:\"production_url\";s:32:\"https://healthyfoodrestaurant.in\";s:11:\"staging_dir\";s:62:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871\";s:11:\"staging_url\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}','yes'),(9745,'staging_environment','production','yes'),(10224,'elementor_elementor_updater_completed','1','yes'),(12432,'_transient_timeout_rishi--update-response','3410951744','no'),(12433,'_transient_rishi--update-response','O:8:\"stdClass\":12:{s:11:\"new_version\";s:5:\"1.2.2\";s:14:\"stable_version\";s:5:\"1.2.2\";s:4:\"name\";s:5:\"Rishi\";s:4:\"slug\";s:5:\"rishi\";s:3:\"url\";s:51:\"https://rishitheme.com/downloads/rishi/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-06-29 06:17:29\";s:8:\"homepage\";s:39:\"https://rishitheme.com/downloads/rishi/\";s:7:\"package\";s:159:\"https://rishitheme.com/edd-sl/package_download/MTcwNTczNDE3Mjo3Nzg2ZTM0N2U5ZmQyZmZjOTM4YmU3ZWQ3MjI4ZmM5OToxMTk1OjMwZTk3ODc5MTI0MTdkYWNmNzY4YjBlNWMzNDFiZTZkOjow\";s:13:\"download_link\";s:159:\"https://rishitheme.com/edd-sl/package_download/MTcwNTczNDE3Mjo3Nzg2ZTM0N2U5ZmQyZmZjOTM4YmU3ZWQ3MjI4ZmM5OToxMTk1OjMwZTk3ODc5MTI0MTdkYWNmNzY4YjBlNWMzNDFiZTZkOjow\";s:8:\"sections\";a:2:{s:11:\"description\";s:0:\"\";s:9:\"changelog\";s:8037:\"<p>== Changelog ==</p>\n<p>1.2.2 : 2023-06-29<br />\n* Update: Added compatibility for WooCommerce version 7.8.0<br />\n* Fix: Design refinements have been done in sidebar list widget.<br />\n* Fix: Issue with image block center alignment has been fixed.<br />\n* Fix: Minor design refinement in SVG has been done.<br />\n* Fix: Issue of product image not showing in Header Cart Element has been fixed.<br />\n* Fix: Design refinement for WooCommerce Cart and Shop page button has been done.</p>\n<p>1.2.1 : 2023-03-07<br />\n* Update: Added compatibility for WooCommerce version 7.4.1</p>\n<p>1.2.0 : 2023-02-03<br />\n* Fix: Blog page design issue in excerpt and image is fixed<br />\n* Fix: Footer design issue is fixed<br />\n* Fix: WooCommerce header cart design issue is fixed<br />\n* Fix: Alignment and gallery issue in the backend editor have been fixed<br />\n* Fix: Breadcrumb design is fixed in the single products<br />\n* Fix: Minor design fix is done for color picker in the customizer</p>\n<p>1.1.9 : 2022-11-24<br />\n* Update: Minor bug fixes and refinements.</p>\n<p>1.1.8 : 2022-11-03<br />\n* Fix: Content wordbreak issue is fixed.</p>\n<p>1.1.7 : 2022-10-21<br />\n* Fix: Multiple Author social link issue is fixed.<br />\n* Fix: Image size of Author Gravatar is fixed.<br />\n* Fix: Removed empty div tag in single page/post.<br />\n* Fix: Image alignment issue is fixed.<br />\n* Fix: Padding of breadcrumb in archive pages is fixed.</p>\n<p>1.1.6 : 2022-07-28<br />\n- New Feature: Image Scale option is added for Featured Image setting.<br />\n- Update: Made single post compatible with Page Break block.<br />\n- Update: Minor bug fixes and refinements.<br />\n- Fix: Upsell product design issue fixed.</p>\n<p>1.1.5: 2022-05-30<br />\n- New Feature: A new Header Element Time is added to display local time.<br />\n- New Feature: A new Header Element Date is added to display current date.<br />\n- New Feature: A new Header Element Image is added to display image.<br />\n- New Feature: A new Header Element Random Posts is added to redirect random posts on click.<br />\n- New Feature: A feature is added to show featured image credit.<br />\n- Update: Added feature to enable or disable Schema.<br />\n- Update: Added feature to select typography for Header Element Trigger.<br />\n- Fix: String translation issue of posts pagination is fixed.<br />\n- Fix: Partial refresh of Header Element Trigger is fixed.<br />\n- Fix: Offcanvas menu alignment issue is fixed.</p>\n<p>1.1.4: 2022-04-18<br />\n- Update: Minor bug fixes and refinements.</p>\n<p>1.1.3: 2022-04-05<br />\n- New Feature: The theme is now accessibility-ready.<br />\n- New Feature: The theme has been made compatible for LearnDash, Tutor LMS and Lifter LMS.<br />\n- New Feature: A new setting is added to enable/disable breadcrumb in Author page.<br />\n- New Feature: The typography setting for the buttons is added.<br />\n- New Feature: A setting to customize the label of the button in the 404 page is added.<br />\n- Update: The featured image is now clickable and links to the blog post.<br />\n- Update: Google Fonts library is updated and now includes more than 1350 fonts.<br />\n- Update: RTL language support is added for WooCommerce.<br />\n- Fix: String translation issue shown by Theme Sniffer is fixed.<br />\n- Fix: The issue of margin not working in the Header Contact element is fixed.<br />\n- Fix: The typography issue for the HTML element in the header is fixed.<br />\n- Fix: The issue of Color Palette 8 not working in Elementor is fixed.<br />\n- Fix: The Partial refresh issue of search page label is fixed.<br />\n- Fix: The featured image original aspect ratio for single post and page is fixed.</p>\n<p>1.1.2: 2022-02-24<br />\n- New Feature: Added Page title feature in blog page.<br />\n- Fix: Infinite scroll issue.<br />\n- Fix: Header cart partial refresh issue.<br />\n- Fix: Category block style issue.<br />\n- Update: Added Rishi Pro and Rishi Companion plugin compatible.<br />\n- Update: Minor bug fixes and refinement.<br />\n- Update: Video Tutorial links added in Dashboard.<br />\n- Update: Upgrade to Pro feature added in both customizer and Dashboard.</p>\n<p>1.1.1: 2022-01-26<br />\n- Update: Fixed the compatibility issue with 5.9.<br />\n- Update: Some of the typos updated.<br />\n- Update: RTL CSS updated.<br />\n- Update: Optimized and refined the CSS code.<br />\n- Update: Removing description from category style.<br />\n- Fix: Pot file generated again for the Rishi Theme and changed the corrected textdomain.<br />\n- Fix: Trigger design issue fixed.<br />\n- Fix: Fixes for the footer copyright issue and pagination fixes made.<br />\n- Fix: rt-background type issue for mobile fixed.<br />\n- Fix: Submenu toggle fixed for mobile.</p>\n<p>1.1.0: 2022-01-18<br />\n- New Feature: Made Simple Social Sharing add-on compatible with the theme.<br />\n- New Feature: Added Post Reading Time in Post Meta settings.<br />\n- Update: Added H1 heading tag if the logo only selected.<br />\n- Update: New Customizer design for better experience.<br />\n- Update: Added Compatibility with new features of Rishi Companion.<br />\n- Fix: Improved Search Implementation and removed unused JS code.<br />\n- Fix: Fixed the JS issues on the dashboard.</p>\n<p>1.0.7: 2022-01-14<br />\n- Update: Admin Notice added for the minimal requirements criteria for updates of theme and plugins.</p>\n<p>1.0.6: 2021-12-14<br />\n- Update: Remove unwanted JS to reduce the number of requests and improve loading speed.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.5: 2021-12-10<br />\n- New Feature: Added theme updater in free theme.<br />\n- Update: Sticky Header issue fixes.<br />\n- Update: Post navigation design issue fixed.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.4: 2021-12-07<br />\n- New Feature: Custom Category color in single post added.<br />\n- Update: Options hook added.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.3: 2021-12-06<br />\n- New Feature: Search page, author and archive page show count partial refresh added.<br />\n- Fix: Added dependencies for wp-i18n.<br />\n- Fix: Archive search show count default changed to false.<br />\n- Update: Updated button svg in Header Builder.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.2: 2021-11-24<br />\n- New Feature: Roadmap added in the Rishi Dashboard.<br />\n- New Feature: Global Color Palette added in the theme.<br />\n- New Feature: Elementor compatibility for Global Color Palatte.<br />\n- New Feature: Styling options for Links in a Single post.<br />\n- Fix: Sticky header and transparent header color issues are fixed.<br />\n- Fix: Gutenberg Editor width is made dynamic based on Container Width settings.<br />\n- Fix: Buttons styling in Editor is fixed and will inherit settings set in Button settings.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.1: 2021-09-24<br />\n- New Feature: Contact Widget added that allows to display contact information in header and footer.<br />\n- New Feature: Added filter for License Block.<br />\n- New Feature: Customizer preview set link added in overall theme.<br />\n- New Feature: Added White label compatible feature on companion plugin.<br />\n- New Feature: Infinite Scroll added in the WooCommerce Shop Page.<br />\n- New Feature: Added MultiSelect Customizer Control.<br />\n- Fix: Search result fixes in the frontend.<br />\n- Fix: Typography issues were corrected for the frontend.<br />\n- Fix: Support added for the Block Widget.<br />\n- Update: Optimized CSS and reduced its size to improve the loading speed.<br />\n- Update: Optimized JS and reduced its size to improve the loading speed.<br />\n- Update: Compatible with demo importer plus compatibility -for the free version.<br />\n- Update: Typos were corrected in overall theme.<br />\n- Update: Solved Post/Page Settings on the individual singular posts/pages.<br />\n- Update: Lazyload fixes for the Free Theme.<br />\n- Update: Pot File updated for JS Strings as well.</p>\n<p>1.0.0: 2021-08-25<br />\n- New Feature: Initial Release.</p>\n\";}s:7:\"banners\";s:41:\"a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}\";s:5:\"icons\";s:6:\"a:0:{}\";}','no'),(12434,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1711764067;s:7:\"checked\";a:6:{s:5:\"rishi\";s:5:\"1.2.2\";s:7:\"sinatra\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.1\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{s:7:\"sinatra\";a:6:{s:5:\"theme\";s:7:\"sinatra\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/sinatra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sinatra.1.3.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(12504,'nfd_coming_soon_module_version','1.2.3','yes'),(12959,'jetpack_protect_blocked_attempts','23','no'),(13394,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1711764066;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(15423,'_transient_timeout_jetpack_file_data_13.2','1712218566','no'),(15424,'_transient_jetpack_file_data_13.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(15427,'jetpack_sync_settings_wpcom_rest_api_enabled','0','yes'),(15509,'jetpack_affiliate_code','86241','yes'),(15850,'_transient_timeout_jetpack_file_data_13.2.1','1712801000','no'),(15851,'_transient_jetpack_file_data_13.2.1','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(16175,'_transient_timeout_jetpack_https_test_message','1711850460','no'),(16176,'_transient_jetpack_https_test_message','','no'),(16295,'_transient_timeout_dirsize_cache','2026349630','no'),(16296,'_transient_dirsize_cache','a:23:{s:76:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/09\";i:0;s:73:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023\";i:0;s:68:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads\";i:0;s:87:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/demo-importer-plus\";i:70364;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/10\";i:1685408;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/11\";i:0;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/12\";i:0;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/09\";i:9567620;s:73:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023\";i:11253028;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021/02\";i:107279149;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021/07\";i:9803274;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021/11\";i:19849198;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021/08\";i:526509;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021/03\";i:631782;s:73:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2021\";i:138089912;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2024/01\";i:0;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2024/02\";i:0;s:76:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2024/03\";i:0;s:73:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2024\";i:0;s:82:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/wpcf7_uploads\";i:152;s:82:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/elementor/css\";i:0;s:78:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/elementor\";i:0;s:68:\"/disk1/websitex/public_html/healthyfoodrestaurant/wp-content/uploads\";i:149413456;}','no'),(16308,'ce4wp_hide_banner:get_started','1','yes'),(16323,'elementor_1_elementor_updater_batch_5d0fc34f28dcfc7a51879f5be5d3','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(16458,'_transient_timeout_jetpack_file_data_13.2.2','1713634749','no'),(16459,'_transient_jetpack_file_data_13.2.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(16686,'elementor_pro_remote_info_api_data_3.14.1','a:2:{s:7:\"timeout\";i:1711518029;s:5:\"value\";s:216314:\"{\"stable_version\":\"3.20.2\",\"last_updated\":\"2022-05-10 14:03:37\",\"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:201943:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\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: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/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 \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &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\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &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 from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/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\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/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-07<\\/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\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/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 characher 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\'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\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &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\'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\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &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\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &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>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &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\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &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\'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\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &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\'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\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &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\'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\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &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=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &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\'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\'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\'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\'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 \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &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\'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\'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\'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 \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &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\'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\'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\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &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\'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 \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &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>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &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\'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 - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.2\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDc0ODI4LCJleHAiOjE3MTE1NjEyMjh9.8lJWMn73f3pqQGvce-eunhzRxLa2qENpmhnR9XsyqQU\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDc0ODI4LCJleHAiOjE3MTE1NjEyMjh9.8lJWMn73f3pqQGvce-eunhzRxLa2qENpmhnR9XsyqQU\\/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:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MTE0NzQ4MjgsImV4cCI6MTcxMTU2MTIyOH0.Y0xC_aJ8yXzB4wzSlAPeqPsyjKX7S5-cNNBoNutgw2I\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MTE0NzQ4MjgsImV4cCI6MTcxMTU2MTIyOH0.Y0xC_aJ8yXzB4wzSlAPeqPsyjKX7S5-cNNBoNutgw2I\\/previous_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:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),(16845,'_transient_timeout_jetpack_plugin_api_action_links_refresh','1711764262','no'),(16846,'_transient_jetpack_plugin_api_action_links_refresh','1711677862','no'),(16863,'_transient_timeout_jetpack_is_single_user','1711778520','no'),(16864,'_transient_jetpack_is_single_user','2','no'),(16872,'_transient_timeout_rishi_license_message','1711850460','no'),(16873,'_transient_rishi_license_message','License key is active.Lifetime License.','no'),(16874,'_transient_timeout_jetpack_https_test','1711850460','no'),(16875,'_transient_jetpack_https_test','1','no'),(16876,'_transient_timeout_jetpack_sync_last_checked_queue_state_sync','1711764090','no'),(16877,'_transient_jetpack_sync_last_checked_queue_state_sync','a:2:{i:0;i:0;i:1;d:0;}','no'),(16878,'jetpack_site_products','a:0:{}','yes'),(16880,'_transient_timeout_wp_plugin_update_bluehost-wordpress-plugin','1711785667','no'),(16881,'_transient_wp_plugin_update_bluehost-wordpress-plugin','O:8:\"stdClass\":22:{s:6:\"author\";s:43:\"<a href=\"https://bluehost.com\">Bluehost</a>\";s:11:\"author_name\";s:8:\"Bluehost\";s:10:\"author_uri\";s:20:\"https://bluehost.com\";s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:13:\"download_link\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.2/bluehost-wordpress-plugin.zip\";s:8:\"homepage\";s:20:\"https://bluehost.com\";s:2:\"id\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:12:\"last_updated\";s:20:\"2024-03-20T18:48:52Z\";s:4:\"name\";s:19:\"The Bluehost Plugin\";s:6:\"plugin\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";s:8:\"sections\";a:1:{s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";}s:17:\"short_description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:4:\"slug\";s:25:\"bluehost-wordpress-plugin\";s:6:\"tested\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"3.9.2\";s:7:\"banners\";a:4:{s:2:\"2x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:2:\"1x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:4:\"high\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:3:\"low\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";}s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";s:2:\"1x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";}s:11:\"new_version\";s:5:\"3.9.2\";s:7:\"package\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.2/bluehost-wordpress-plugin.zip\";s:3:\"url\";s:20:\"https://bluehost.com\";}','no'),(16882,'_site_transient_timeout_theme_roots','1711765867','no'),(16883,'_site_transient_theme_roots','a:6:{s:5:\"rishi\";s:7:\"/themes\";s:7:\"sinatra\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(16884,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1711764068;s:8:\"response\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.20.2\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:6:\"3.20.2\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDc0ODI4LCJleHAiOjE3MTE1NjEyMjh9.8lJWMn73f3pqQGvce-eunhzRxLa2qENpmhnR9XsyqQU/package_download\";s:13:\"download_link\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzExNDc0ODI4LCJleHAiOjE3MTE1NjEyMjh9.8lJWMn73f3pqQGvce-eunhzRxLa2qENpmhnR9XsyqQU/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MTE0NzQ4MjgsImV4cCI6MTcxMTU2MTIyOH0.Y0xC_aJ8yXzB4wzSlAPeqPsyjKX7S5-cNNBoNutgw2I/previous_download\";s:13:\"download_link\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MTE0NzQ4MjgsImV4cCI6MTcxMTU2MTIyOH0.Y0xC_aJ8yXzB4wzSlAPeqPsyjKX7S5-cNNBoNutgw2I/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/click-to-chat-for-whatsapp\";s:4:\"slug\";s:26:\"click-to-chat-for-whatsapp\";s:6:\"plugin\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:11:\"new_version\";s:4:\"3.34\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/click-to-chat-for-whatsapp/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.3.34.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-256x256.gif?rev=2892731\";s:2:\"1x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.gif?rev=2892731\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2896528\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.9.3\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.9.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"w.org/plugins/creative-mail-by-constant-contact\";s:4:\"slug\";s:33:\"creative-mail-by-constant-contact\";s:6:\"plugin\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/creative-mail-by-constant-contact.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";s:3:\"svg\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-1544x500.png?rev=2821536\";s:2:\"1x\";s:88:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-772x250.png?rev=2821536\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:41:\"demo-importer-plus/demo-importer-plus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/demo-importer-plus\";s:4:\"slug\";s:18:\"demo-importer-plus\";s:6:\"plugin\";s:41:\"demo-importer-plus/demo-importer-plus.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/demo-importer-plus/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/demo-importer-plus.1.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/demo-importer-plus/assets/icon-256x256.jpg?rev=2780470\";s:2:\"1x\";s:71:\"https://ps.w.org/demo-importer-plus/assets/icon-128x128.jpg?rev=2780470\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/demo-importer-plus/assets/banner-1544x500.jpg?rev=2780470\";s:2:\"1x\";s:73:\"https://ps.w.org/demo-importer-plus/assets/banner-772x250.jpg?rev=2780470\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.1\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.20.3\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"13.2.2\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.13.2.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/mega-elements-addons-for-elementor\";s:4:\"slug\";s:34:\"mega-elements-addons-for-elementor\";s:6:\"plugin\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/mega-elements-addons-for-elementor/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/mega-elements-addons-for-elementor.1.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/icon-256x256.jpg?rev=2453188\";s:2:\"1x\";s:87:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/icon-128x128.jpg?rev=2453188\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/banner-1544x500.jpg?rev=2453188\";s:2:\"1x\";s:89:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/banner-772x250.jpg?rev=2453188\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"5.3.2\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:4:\"3.34\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.3\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.6.7\";s:41:\"demo-importer-plus/demo-importer-plus.php\";s:5:\"1.2.0\";s:23:\"elementor/elementor.php\";s:6:\"3.20.3\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.20.2\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:6:\"13.2.2\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";s:5:\"1.2.0\";s:35:\"rishi-companion/rishi-companion.php\";s:5:\"1.2.2\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:5:\"3.9.2\";}}','no'),(16886,'_transient_timeout_jetpack_sync_constants_await','1711767669','no'),(16887,'_transient_jetpack_sync_constants_await','1711764069.0585','no'),(16888,'_transient_timeout_jetpack_sync_callables_await','1711764129','no'),(16889,'_transient_jetpack_sync_callables_await','1711764069.0881','no'),(16896,'_transient_timeout_nfd_site_capabilities','1711793443','no'),(16897,'_transient_nfd_site_capabilities','a:7:{s:11:\"canAccessAI\";b:1;s:18:\"canAccessGlobalCTB\";b:0;s:19:\"canAccessHelpCenter\";b:0;s:11:\"hasEcomdash\";b:0;s:15:\"hasYithExtended\";b:0;s:11:\"isEcommerce\";b:0;s:8:\"isJarvis\";b:0;}','no'),(16899,'_transient_timeout_jetpack_update_remote_package_last_query','1711779104','no'),(16900,'_transient_jetpack_update_remote_package_last_query','1711779044','no');
/*!40000 ALTER TABLE `ajj_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_postmeta`
--

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

--
-- Dumping data for table `ajj_postmeta`
--

LOCK TABLES `ajj_postmeta` WRITE;
/*!40000 ALTER TABLE `ajj_postmeta` DISABLE KEYS */;
INSERT INTO `ajj_postmeta` VALUES (2,3,'_wp_page_template','default'),(5,7,'_wp_attached_file','2023/09/rishi-restaurant.xml'),(6,7,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1745007;}'),(7,8,'_wp_attached_file','2021/02/Page-1.png'),(8,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2021/02/Page-1.png\";s:8:\"filesize\";i:665;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:{}}}'),(9,8,'_shortpixel_status','2.6800'),(10,8,'_wxr_import_user_slug','rishidemos'),(11,8,'_demo_importer_plus_sites_imported_post','1'),(12,8,'_demo_importer_enable_for_batch','1'),(13,8,'_demo_importer_plus_sites_image_hash','c469ea3549748c0e233ae7b3f91904e6b15107b5'),(14,8,'_elementor_source_image_hash','c469ea3549748c0e233ae7b3f91904e6b15107b5'),(15,5,'_wp_attached_file','2021/02/Repeat-Grid-1-1.png'),(16,5,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:305;s:6:\"height\";i:5;s:4:\"file\";s:27:\"2021/02/Repeat-Grid-1-1.png\";s:8:\"filesize\";i:115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-150x5.png\";s:5:\"width\";i:150;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-272x5.png\";s:5:\"width\";i:272;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-197x5.png\";s:5:\"width\";i:197;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-270x5.png\";s:5:\"width\";i:270;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-170x5.png\";s:5:\"width\";i:170;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,5,'_shortpixel_status','2.4300'),(18,5,'_wxr_import_user_slug','rishidemos'),(19,5,'_demo_importer_plus_sites_imported_post','1'),(20,5,'_demo_importer_enable_for_batch','1'),(21,5,'_demo_importer_plus_sites_image_hash','47519549bad84b19ee0d8ce7bf8ab50c63d06935'),(22,5,'_elementor_source_image_hash','47519549bad84b19ee0d8ce7bf8ab50c63d06935'),(23,9,'_wp_attached_file','2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png'),(24,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png\";s:8:\"filesize\";i:3206;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:{}}}'),(25,9,'_shortpixel_status','2.6000'),(26,9,'_wxr_import_user_slug','rishidemos'),(27,9,'_demo_importer_plus_sites_imported_post','1'),(28,9,'_demo_importer_enable_for_batch','1'),(29,9,'_demo_importer_plus_sites_image_hash','c37d818167e3a089da80027cacb9db2d99db9cca'),(30,9,'_elementor_source_image_hash','c37d818167e3a089da80027cacb9db2d99db9cca'),(31,10,'_wp_attached_file','2021/02/bg.png'),(32,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2021/02/bg.png\";s:8:\"filesize\";i:1312387;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"bg-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102627;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"bg-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1173052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"bg-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670660;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:14:\"bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401327;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:14:\"bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158056;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:14:\"bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182840;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:14:\"bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95558;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:14:\"bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239803;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:14:\"bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260234;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:14:\"bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579848;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:14:\"bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98170;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:14:\"bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367774;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:14:\"bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54797;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:14:\"bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171255;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"bg-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2562768;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1503450;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:14:\"bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:772669;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:14:\"bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173627;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,10,'_shortpixel_status','2.6900'),(34,10,'_wxr_import_user_slug','rishidemos'),(35,10,'_demo_importer_plus_sites_imported_post','1'),(36,10,'_demo_importer_enable_for_batch','1'),(37,10,'_demo_importer_plus_sites_image_hash','1a59fcaf47e8177aa25d18e2e446202ce6e0a7ed'),(38,10,'_elementor_source_image_hash','1a59fcaf47e8177aa25d18e2e446202ce6e0a7ed'),(39,11,'_wp_attached_file','2021/02/cayla1-w6ftFbPCs9I-unsplash.png'),(40,11,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:39:\"2021/02/cayla1-w6ftFbPCs9I-unsplash.png\";s:8:\"filesize\";i:3170;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:{}}}'),(41,11,'_shortpixel_status','2.6200'),(42,11,'_wxr_import_user_slug','rishidemos'),(43,11,'_demo_importer_plus_sites_imported_post','1'),(44,11,'_demo_importer_enable_for_batch','1'),(45,11,'_demo_importer_plus_sites_image_hash','4c646bf88af683b12f59ee06bfcf4c4c43bf93a3'),(46,11,'_elementor_source_image_hash','4c646bf88af683b12f59ee06bfcf4c4c43bf93a3'),(47,12,'_wp_attached_file','2021/02/cheesecake-stuffed-strawberries-500x500-1.png'),(48,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/02/cheesecake-stuffed-strawberries-500x500-1.png\";s:8:\"filesize\";i:3350;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:{}}}'),(49,12,'_shortpixel_status','2.6200'),(50,12,'_wxr_import_user_slug','rishidemos'),(51,12,'_demo_importer_plus_sites_imported_post','1'),(52,12,'_demo_importer_enable_for_batch','1'),(53,12,'_demo_importer_plus_sites_image_hash','4215390b0cb062d04e86e3d16283b52c7464088a'),(54,12,'_elementor_source_image_hash','4215390b0cb062d04e86e3d16283b52c7464088a'),(55,13,'_wp_attached_file','2021/02/chef.png'),(56,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:48;s:4:\"file\";s:16:\"2021/02/chef.png\";s:8:\"filesize\";i:503;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:{}}}'),(57,13,'_shortpixel_status','2.7100'),(58,13,'_wxr_import_user_slug','rishidemos'),(59,13,'_demo_importer_plus_sites_imported_post','1'),(60,13,'_demo_importer_enable_for_batch','1'),(61,13,'_demo_importer_plus_sites_image_hash','5e1dd9196ddc299d06fe5afaa83a8be0bac0d005'),(62,13,'_elementor_source_image_hash','5e1dd9196ddc299d06fe5afaa83a8be0bac0d005'),(63,14,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png'),(64,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:48:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png\";s:8:\"filesize\";i:124911;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41964;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220142;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141724;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147226;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93180;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199859;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215923;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x530.png\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276319;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82137;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x320.png\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173970;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52065;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146177;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x520.png\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,14,'_shortpixel_status','2.7500'),(66,14,'_wxr_import_user_slug','rishidemos'),(67,14,'_demo_importer_plus_sites_imported_post','1'),(68,14,'_demo_importer_enable_for_batch','1'),(69,14,'_demo_importer_plus_sites_image_hash','d5a9383c8ddcd84bc26e9c3fb2fae63ea445f3d3'),(70,14,'_elementor_source_image_hash','d5a9383c8ddcd84bc26e9c3fb2fae63ea445f3d3'),(71,15,'_wp_attached_file','2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png'),(72,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png\";s:8:\"filesize\";i:3174;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:{}}}'),(73,15,'_shortpixel_status','2.5800'),(74,15,'_wxr_import_user_slug','rishidemos'),(75,15,'_demo_importer_plus_sites_imported_post','1'),(76,15,'_demo_importer_enable_for_batch','1'),(77,15,'_demo_importer_plus_sites_image_hash','62dc32dca782bd1e8f5cd7c74b6dd5347c7ff075'),(78,15,'_elementor_source_image_hash','62dc32dca782bd1e8f5cd7c74b6dd5347c7ff075'),(79,16,'_wp_attached_file','2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png'),(80,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:44:\"2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png\";s:8:\"filesize\";i:3521;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:{}}}'),(81,16,'_shortpixel_status','2.6100'),(82,16,'_wxr_import_user_slug','rishidemos'),(83,16,'_demo_importer_plus_sites_imported_post','1'),(84,16,'_demo_importer_enable_for_batch','1'),(85,16,'_demo_importer_plus_sites_image_hash','39f1f6e39d42c70d185e59ab07fe548c20899a77'),(86,16,'_elementor_source_image_hash','39f1f6e39d42c70d185e59ab07fe548c20899a77'),(87,17,'_wp_attached_file','2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png'),(88,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png\";s:8:\"filesize\";i:2777;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:{}}}'),(89,17,'_shortpixel_status','2.6300'),(90,17,'_wxr_import_user_slug','rishidemos'),(91,17,'_demo_importer_plus_sites_imported_post','1'),(92,17,'_demo_importer_enable_for_batch','1'),(93,17,'_demo_importer_plus_sites_image_hash','d0d2394d8d9266842833107babd40090874e12e2'),(94,17,'_elementor_source_image_hash','d0d2394d8d9266842833107babd40090874e12e2'),(95,18,'_wp_attached_file','2021/02/leaf.png'),(96,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:52;s:4:\"file\";s:16:\"2021/02/leaf.png\";s:8:\"filesize\";i:480;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:{}}}'),(97,18,'_shortpixel_status','2.7900'),(98,18,'_wxr_import_user_slug','rishidemos'),(99,18,'_demo_importer_plus_sites_imported_post','1'),(100,18,'_demo_importer_enable_for_batch','1'),(101,18,'_demo_importer_plus_sites_image_hash','c526ee958df92d6f7f166c04d1b7eaf35dbac9de'),(102,18,'_elementor_source_image_hash','c526ee958df92d6f7f166c04d1b7eaf35dbac9de'),(103,19,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png'),(104,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png\";s:8:\"filesize\";i:3084;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:{}}}'),(105,19,'_shortpixel_status','2.6200'),(106,19,'_wxr_import_user_slug','rishidemos'),(107,19,'_demo_importer_plus_sites_imported_post','1'),(108,19,'_demo_importer_enable_for_batch','1'),(109,19,'_demo_importer_plus_sites_image_hash','47b06c63dbfaa50d1fb750b62a9d8b428eca434e'),(110,19,'_elementor_source_image_hash','47b06c63dbfaa50d1fb750b62a9d8b428eca434e'),(111,20,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png'),(112,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png\";s:8:\"filesize\";i:3380;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:{}}}'),(113,20,'_shortpixel_status','2.6000'),(114,20,'_wxr_import_user_slug','rishidemos'),(115,20,'_demo_importer_plus_sites_imported_post','1'),(116,20,'_demo_importer_enable_for_batch','1'),(117,20,'_demo_importer_plus_sites_image_hash','c69423872e61935b355a529e3dbec51c6c1ee4da'),(118,20,'_elementor_source_image_hash','c69423872e61935b355a529e3dbec51c6c1ee4da'),(119,21,'_wp_attached_file','2021/02/lunch.png'),(120,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:17:\"2021/02/lunch.png\";s:8:\"filesize\";i:901;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:{}}}'),(121,21,'_shortpixel_status','2.7000'),(122,21,'_wxr_import_user_slug','rishidemos'),(123,21,'_demo_importer_plus_sites_imported_post','1'),(124,21,'_demo_importer_enable_for_batch','1'),(125,21,'_demo_importer_plus_sites_image_hash','60a41fb53e0c5bf252f214714a64a6fec6dcc6eb'),(126,21,'_elementor_source_image_hash','60a41fb53e0c5bf252f214714a64a6fec6dcc6eb'),(127,22,'_wp_attached_file','2021/02/make-a-reservation.png'),(128,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:997;s:4:\"file\";s:30:\"2021/02/make-a-reservation.png\";s:8:\"filesize\";i:645786;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69962;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1024x532.png\";s:5:\"width\";i:1024;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-768x399.png\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421561;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285143;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119769;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78546;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189152;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415103;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73176;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254988;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43108;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1536x798.png\";s:5:\"width\";i:1536;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1672642;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049002;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542611;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,22,'_shortpixel_status','2.7400'),(130,22,'_wxr_import_user_slug','rishidemos'),(131,22,'_demo_importer_plus_sites_imported_post','1'),(132,22,'_demo_importer_enable_for_batch','1'),(133,22,'_demo_importer_plus_sites_image_hash','acc8fe8a71b5e911d9f890d7117b8b369c239dae'),(134,22,'_elementor_source_image_hash','acc8fe8a71b5e911d9f890d7117b8b369c239dae'),(135,23,'_wp_attached_file','2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png'),(136,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:49:\"2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png\";s:8:\"filesize\";i:3650;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:{}}}'),(137,23,'_shortpixel_status','2.6000'),(138,23,'_wxr_import_user_slug','rishidemos'),(139,23,'_demo_importer_plus_sites_imported_post','1'),(140,23,'_demo_importer_enable_for_batch','1'),(141,23,'_demo_importer_plus_sites_image_hash','59605b31d4f0d3ac8d038f12802a0cfd3cc5535b'),(142,23,'_elementor_source_image_hash','59605b31d4f0d3ac8d038f12802a0cfd3cc5535b'),(143,24,'_wp_attached_file','2021/02/offer.png'),(144,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:622;s:4:\"file\";s:17:\"2021/02/offer.png\";s:8:\"filesize\";i:83127;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"offer-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19820;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"offer-1024x332.png\";s:5:\"width\";i:1024;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"offer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14976;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"offer-768x249.png\";s:5:\"width\";i:768;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91591;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"offer-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72361;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"offer-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41422;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"offer-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43364;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"offer-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27301;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"offer-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56304;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"offer-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59547;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"offer-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103723;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"offer-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25636;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"offer-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86539;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"offer-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18403;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"offer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43346;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"offer-1536x498.png\";s:5:\"width\";i:1536;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279031;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"offer-1170x622.png\";s:5:\"width\";i:1170;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143230;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"offer-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122242;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"offer-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40045;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,24,'_shortpixel_status','2.7400'),(146,24,'_wxr_import_user_slug','rishidemos'),(147,24,'_demo_importer_plus_sites_imported_post','1'),(148,24,'_demo_importer_enable_for_batch','1'),(149,24,'_demo_importer_plus_sites_image_hash','36c6deb8cdd672a338d6d03bef587426405687f9'),(150,24,'_elementor_source_image_hash','36c6deb8cdd672a338d6d03bef587426405687f9'),(151,25,'_wp_attached_file','2021/02/refresh.png'),(152,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:54;s:4:\"file\";s:19:\"2021/02/refresh.png\";s:8:\"filesize\";i:872;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:{}}}'),(153,25,'_shortpixel_status','2.7500'),(154,25,'_wxr_import_user_slug','rishidemos'),(155,25,'_demo_importer_plus_sites_imported_post','1'),(156,25,'_demo_importer_enable_for_batch','1'),(157,25,'_demo_importer_plus_sites_image_hash','a37aab534f4ced4ff855007c85c81d9f535515cb'),(158,25,'_elementor_source_image_hash','a37aab534f4ced4ff855007c85c81d9f535515cb'),(159,26,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52.png'),(160,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:42:\"2021/02/screenshot-2020.08.06-07_47_52.png\";s:8:\"filesize\";i:114377;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339867;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160638;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110578;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223429;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239482;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94295;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239207;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59813;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165433;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(161,26,'_shortpixel_status','2.7700'),(162,26,'_wxr_import_user_slug','rishidemos'),(163,26,'_demo_importer_plus_sites_imported_post','1'),(164,26,'_demo_importer_enable_for_batch','1'),(165,26,'_demo_importer_plus_sites_image_hash','081ed06e6c662567513d69023b84c2d551d28bc9'),(166,26,'_elementor_source_image_hash','081ed06e6c662567513d69023b84c2d551d28bc9'),(167,27,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28.png'),(168,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:42:\"2021/02/screenshot-2020.08.06-07_48_28.png\";s:8:\"filesize\";i:93243;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42296;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:287199;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130647;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84401;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189531;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202943;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82788;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187148;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52440;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,27,'_shortpixel_status','2.7600'),(170,27,'_wxr_import_user_slug','rishidemos'),(171,27,'_demo_importer_plus_sites_imported_post','1'),(172,27,'_demo_importer_enable_for_batch','1'),(173,27,'_demo_importer_plus_sites_image_hash','5dd22cee1e4bf5571b36621625bf2d35e2b4b570'),(174,27,'_elementor_source_image_hash','5dd22cee1e4bf5571b36621625bf2d35e2b4b570'),(175,28,'_wp_attached_file','2021/02/sign.png'),(176,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:384;s:6:\"height\";i:99;s:4:\"file\";s:16:\"2021/02/sign.png\";s:8:\"filesize\";i:1696;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"sign-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"sign-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1816;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"sign-272x99.png\";s:5:\"width\";i:272;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2798;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:15:\"sign-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"sign-197x99.png\";s:5:\"width\";i:197;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2209;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:15:\"sign-355x99.png\";s:5:\"width\";i:355;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3589;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:15:\"sign-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"sign-270x99.png\";s:5:\"width\";i:270;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2800;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"sign-170x99.png\";s:5:\"width\";i:170;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"sign-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3031;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:15:\"sign-360x99.png\";s:5:\"width\";i:360;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,28,'_shortpixel_status','2.6600'),(178,28,'_wxr_import_user_slug','rishidemos'),(179,28,'_demo_importer_plus_sites_imported_post','1'),(180,28,'_demo_importer_enable_for_batch','1'),(181,28,'_demo_importer_plus_sites_image_hash','a99654108897365fad471601703a97d7596d36ec'),(182,28,'_elementor_source_image_hash','a99654108897365fad471601703a97d7596d36ec'),(183,29,'_wp_attached_file','2021/02/testimonial-bg.png'),(184,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:26:\"2021/02/testimonial-bg.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(185,29,'_shortpixel_status','2.7700'),(186,29,'_wxr_import_user_slug','rishidemos'),(187,29,'_demo_importer_plus_sites_imported_post','1'),(188,29,'_demo_importer_enable_for_batch','1'),(189,29,'_demo_importer_plus_sites_image_hash','a371fc01e38d09ab8ce08988be282107f66faa55'),(190,29,'_elementor_source_image_hash','a371fc01e38d09ab8ce08988be282107f66faa55'),(191,30,'_wp_attached_file','2021/02/tim-chow-MhpxHv0FKtE-unsplash.png'),(192,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/02/tim-chow-MhpxHv0FKtE-unsplash.png\";s:8:\"filesize\";i:3367;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:{}}}'),(193,30,'_shortpixel_status','2.5900'),(194,30,'_wxr_import_user_slug','rishidemos'),(195,30,'_demo_importer_plus_sites_imported_post','1'),(196,30,'_demo_importer_enable_for_batch','1'),(197,30,'_demo_importer_plus_sites_image_hash','a0893d3c9dd25c7f94399acb92e5ece20a44d99c'),(198,30,'_elementor_source_image_hash','a0893d3c9dd25c7f94399acb92e5ece20a44d99c'),(199,31,'_wp_attached_file','2021/02/wedding-dinner.png'),(200,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:66;s:6:\"height\";i:51;s:4:\"file\";s:26:\"2021/02/wedding-dinner.png\";s:8:\"filesize\";i:533;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,31,'_shortpixel_status','2.6800'),(202,31,'_wxr_import_user_slug','rishidemos'),(203,31,'_demo_importer_plus_sites_imported_post','1'),(204,31,'_demo_importer_enable_for_batch','1'),(205,31,'_demo_importer_plus_sites_image_hash','c078714e40d017cff1be705ca80bbfe5397f4977'),(206,31,'_elementor_source_image_hash','c078714e40d017cff1be705ca80bbfe5397f4977'),(207,32,'_wp_attached_file','2021/02/bg-1.png'),(208,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:16:\"2021/02/bg-1.png\";s:8:\"filesize\";i:1312387;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102627;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1173052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"bg-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670660;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401327;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158056;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182840;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95558;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239803;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260234;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579848;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98170;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367774;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54797;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171255;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"bg-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2562768;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"bg-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1503450;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:16:\"bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:772669;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173627;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,32,'_elementor_source_image_hash','3fb81513babc24b55f899b74651eec7aac1b7dbe'),(210,32,'_shortpixel_status','2.6900'),(211,32,'_wxr_import_user_slug','rishidemos'),(212,32,'_demo_importer_plus_sites_imported_post','1'),(213,32,'_demo_importer_enable_for_batch','1'),(214,32,'_demo_importer_plus_sites_image_hash','3fb81513babc24b55f899b74651eec7aac1b7dbe'),(215,33,'_wp_attached_file','2021/02/leaf-1.png'),(216,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:52;s:4:\"file\";s:18:\"2021/02/leaf-1.png\";s:8:\"filesize\";i:480;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:{}}}'),(217,33,'_elementor_source_image_hash','36891d0e12eae0546a1d6ec365fcd4e120443c1a'),(218,33,'_shortpixel_status','2.7900'),(219,33,'_wxr_import_user_slug','rishidemos'),(220,33,'_demo_importer_plus_sites_imported_post','1'),(221,33,'_demo_importer_enable_for_batch','1'),(222,33,'_demo_importer_plus_sites_image_hash','36891d0e12eae0546a1d6ec365fcd4e120443c1a'),(223,34,'_wp_attached_file','2021/02/refresh-1.png'),(224,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2021/02/refresh-1.png\";s:8:\"filesize\";i:872;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:{}}}'),(225,34,'_elementor_source_image_hash','837da5f12ab4d3aa7619165f81e6bc607eed9a91'),(226,34,'_shortpixel_status','2.7500'),(227,34,'_wxr_import_user_slug','rishidemos'),(228,34,'_demo_importer_plus_sites_imported_post','1'),(229,34,'_demo_importer_enable_for_batch','1'),(230,34,'_demo_importer_plus_sites_image_hash','837da5f12ab4d3aa7619165f81e6bc607eed9a91'),(231,35,'_wp_attached_file','2021/02/chef-1.png'),(232,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:48;s:4:\"file\";s:18:\"2021/02/chef-1.png\";s:8:\"filesize\";i:503;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:{}}}'),(233,35,'_elementor_source_image_hash','4af53b04ddf735de2765bd82b83b7bc323f5bfac'),(234,35,'_shortpixel_status','2.7100'),(235,35,'_wxr_import_user_slug','rishidemos'),(236,35,'_demo_importer_plus_sites_imported_post','1'),(237,35,'_demo_importer_enable_for_batch','1'),(238,35,'_demo_importer_plus_sites_image_hash','4af53b04ddf735de2765bd82b83b7bc323f5bfac'),(239,36,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1.png'),(240,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:44:\"2021/02/screenshot-2020.08.06-07_47_52-1.png\";s:8:\"filesize\";i:114377;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339867;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160638;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110578;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223429;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239482;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94295;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239207;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59813;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165433;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(241,36,'_elementor_source_image_hash','e26e43df55a7f45bc0ea3a7afa55a89a24a4927b'),(242,36,'_shortpixel_status','2.7700'),(243,36,'_wxr_import_user_slug','rishidemos'),(244,36,'_demo_importer_plus_sites_imported_post','1'),(245,36,'_demo_importer_enable_for_batch','1'),(246,36,'_demo_importer_plus_sites_image_hash','e26e43df55a7f45bc0ea3a7afa55a89a24a4927b'),(247,37,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1.png'),(248,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:44:\"2021/02/screenshot-2020.08.06-07_48_28-1.png\";s:8:\"filesize\";i:93243;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42296;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:287199;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130647;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84401;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189531;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202943;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82788;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187148;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52440;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,37,'_elementor_source_image_hash','5d8672b78b6b7a47efcd462fe6d452a7e1e5d556'),(250,37,'_shortpixel_status','2.7600'),(251,37,'_wxr_import_user_slug','rishidemos'),(252,37,'_demo_importer_plus_sites_imported_post','1'),(253,37,'_demo_importer_enable_for_batch','1'),(254,37,'_demo_importer_plus_sites_image_hash','5d8672b78b6b7a47efcd462fe6d452a7e1e5d556'),(255,38,'_wp_attached_file','2021/02/offer-1.png'),(256,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:622;s:4:\"file\";s:19:\"2021/02/offer-1.png\";s:8:\"filesize\";i:83127;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"offer-1-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19820;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"offer-1-1024x332.png\";s:5:\"width\";i:1024;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"offer-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14976;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"offer-1-768x249.png\";s:5:\"width\";i:768;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91591;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:19:\"offer-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72361;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:19:\"offer-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41422;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:19:\"offer-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43364;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:19:\"offer-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27301;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:19:\"offer-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56304;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:19:\"offer-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59547;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:19:\"offer-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103723;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:19:\"offer-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25636;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:19:\"offer-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86539;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:19:\"offer-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18403;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:19:\"offer-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43346;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"offer-1-1536x498.png\";s:5:\"width\";i:1536;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279031;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"offer-1-1170x622.png\";s:5:\"width\";i:1170;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143230;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:19:\"offer-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122242;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:19:\"offer-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40045;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(257,38,'_elementor_source_image_hash','1ffc0877418bd9e477ad0c1bc64c982f6fc8aa49'),(258,38,'_shortpixel_status','2.7400'),(259,38,'_wxr_import_user_slug','rishidemos'),(260,38,'_demo_importer_plus_sites_imported_post','1'),(261,38,'_demo_importer_enable_for_batch','1'),(262,38,'_demo_importer_plus_sites_image_hash','1ffc0877418bd9e477ad0c1bc64c982f6fc8aa49'),(263,39,'_wp_attached_file','2021/02/Page-1-1.png'),(264,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:60;s:4:\"file\";s:20:\"2021/02/Page-1-1.png\";s:8:\"filesize\";i:665;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:{}}}'),(265,39,'_elementor_source_image_hash','aad3b45fe9608be6868bd362eddc706b91dc2c68'),(266,39,'_shortpixel_status','2.6800'),(267,39,'_wxr_import_user_slug','rishidemos'),(268,39,'_demo_importer_plus_sites_imported_post','1'),(269,39,'_demo_importer_enable_for_batch','1'),(270,39,'_demo_importer_plus_sites_image_hash','aad3b45fe9608be6868bd362eddc706b91dc2c68'),(271,40,'_wp_attached_file','2021/02/lunch-1.png'),(272,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:19:\"2021/02/lunch-1.png\";s:8:\"filesize\";i:901;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:{}}}'),(273,40,'_elementor_source_image_hash','493538df85f57426f9c566d98fbe6c83ff6037fa'),(274,40,'_shortpixel_status','2.7000'),(275,40,'_wxr_import_user_slug','rishidemos'),(276,40,'_demo_importer_plus_sites_imported_post','1'),(277,40,'_demo_importer_enable_for_batch','1'),(278,40,'_demo_importer_plus_sites_image_hash','493538df85f57426f9c566d98fbe6c83ff6037fa'),(279,41,'_wp_attached_file','2021/02/wedding-dinner-1.png'),(280,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:66;s:6:\"height\";i:51;s:4:\"file\";s:28:\"2021/02/wedding-dinner-1.png\";s:8:\"filesize\";i:533;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:{}}}'),(281,41,'_elementor_source_image_hash','0f34b24a7fcb53a237dcfa256e405ff1a7753388'),(282,41,'_shortpixel_status','2.6800'),(283,41,'_wxr_import_user_slug','rishidemos'),(284,41,'_demo_importer_plus_sites_imported_post','1'),(285,41,'_demo_importer_enable_for_batch','1'),(286,41,'_demo_importer_plus_sites_image_hash','0f34b24a7fcb53a237dcfa256e405ff1a7753388'),(287,42,'_wp_attached_file','2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png'),(288,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png\";s:8:\"filesize\";i:3170;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:{}}}'),(289,42,'_elementor_source_image_hash','e92e3535a929d895ee9b0413342b098381bcc869'),(290,42,'_shortpixel_status','2.6200'),(291,42,'_wxr_import_user_slug','rishidemos'),(292,42,'_demo_importer_plus_sites_imported_post','1'),(293,42,'_demo_importer_enable_for_batch','1'),(294,42,'_demo_importer_plus_sites_image_hash','e92e3535a929d895ee9b0413342b098381bcc869'),(295,43,'_wp_attached_file','2021/02/Repeat-Grid-1-1-1.png'),(296,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:305;s:6:\"height\";i:5;s:4:\"file\";s:29:\"2021/02/Repeat-Grid-1-1-1.png\";s:8:\"filesize\";i:115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-150x5.png\";s:5:\"width\";i:150;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-272x5.png\";s:5:\"width\";i:272;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-197x5.png\";s:5:\"width\";i:197;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-270x5.png\";s:5:\"width\";i:270;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-170x5.png\";s:5:\"width\";i:170;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(297,43,'_elementor_source_image_hash','8e3d4e880eac035484252873b29df1e66b50bb11'),(298,43,'_shortpixel_status','2.4300'),(299,43,'_wxr_import_user_slug','rishidemos'),(300,43,'_demo_importer_plus_sites_imported_post','1'),(301,43,'_demo_importer_enable_for_batch','1'),(302,43,'_demo_importer_plus_sites_image_hash','8e3d4e880eac035484252873b29df1e66b50bb11'),(303,44,'_wp_attached_file','2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png'),(304,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png\";s:8:\"filesize\";i:3521;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:{}}}'),(305,44,'_elementor_source_image_hash','84d89a9fef76e763f5bfaec57bb53fce4cadd0d3'),(306,44,'_shortpixel_status','2.6100'),(307,44,'_wxr_import_user_slug','rishidemos'),(308,44,'_demo_importer_plus_sites_imported_post','1'),(309,44,'_demo_importer_enable_for_batch','1'),(310,44,'_demo_importer_plus_sites_image_hash','84d89a9fef76e763f5bfaec57bb53fce4cadd0d3'),(311,45,'_wp_attached_file','2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png'),(312,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:51:\"2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png\";s:8:\"filesize\";i:3650;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:{}}}'),(313,45,'_elementor_source_image_hash','f1b784fcde2aa8e47076e0adc40c9af1cb3b9709'),(314,45,'_shortpixel_status','2.6000'),(315,45,'_wxr_import_user_slug','rishidemos'),(316,45,'_demo_importer_plus_sites_imported_post','1'),(317,45,'_demo_importer_enable_for_batch','1'),(318,45,'_demo_importer_plus_sites_image_hash','f1b784fcde2aa8e47076e0adc40c9af1cb3b9709'),(319,46,'_wp_attached_file','2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png'),(320,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:50:\"2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png\";s:8:\"filesize\";i:3174;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:{}}}'),(321,46,'_elementor_source_image_hash','969ed5defe7837f589b122f5a7ee6d6b80f42e27'),(322,46,'_shortpixel_status','2.5800'),(323,46,'_wxr_import_user_slug','rishidemos'),(324,46,'_demo_importer_plus_sites_imported_post','1'),(325,46,'_demo_importer_enable_for_batch','1'),(326,46,'_demo_importer_plus_sites_image_hash','969ed5defe7837f589b122f5a7ee6d6b80f42e27'),(327,47,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png'),(328,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:60:\"2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png\";s:8:\"filesize\";i:3084;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:{}}}'),(329,47,'_elementor_source_image_hash','d6b7051b7a9917c846fe814556fbda47547d1303'),(330,47,'_shortpixel_status','2.6200'),(331,47,'_wxr_import_user_slug','rishidemos'),(332,47,'_demo_importer_plus_sites_imported_post','1'),(333,47,'_demo_importer_enable_for_batch','1'),(334,47,'_demo_importer_plus_sites_image_hash','d6b7051b7a9917c846fe814556fbda47547d1303'),(335,48,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png'),(336,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:60:\"2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png\";s:8:\"filesize\";i:3380;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:{}}}'),(337,48,'_elementor_source_image_hash','ef6bbc5e447eaf822e342f538457311081448788'),(338,48,'_shortpixel_status','2.6000'),(339,48,'_wxr_import_user_slug','rishidemos'),(340,48,'_demo_importer_plus_sites_imported_post','1'),(341,48,'_demo_importer_enable_for_batch','1'),(342,48,'_demo_importer_plus_sites_image_hash','ef6bbc5e447eaf822e342f538457311081448788'),(343,49,'_wp_attached_file','2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png'),(344,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:55:\"2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png\";s:8:\"filesize\";i:3350;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:{}}}'),(345,49,'_elementor_source_image_hash','0709fb6656c05327272ce3872dda9048830c2258'),(346,49,'_shortpixel_status','2.6200'),(347,49,'_wxr_import_user_slug','rishidemos'),(348,49,'_demo_importer_plus_sites_imported_post','1'),(349,49,'_demo_importer_enable_for_batch','1'),(350,49,'_demo_importer_plus_sites_image_hash','0709fb6656c05327272ce3872dda9048830c2258'),(351,50,'_wp_attached_file','2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png'),(352,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png\";s:8:\"filesize\";i:2777;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:{}}}'),(353,50,'_elementor_source_image_hash','14fa4e9db6b7134ad9ee0813131d2a289eae0534'),(354,50,'_shortpixel_status','2.6300'),(355,50,'_wxr_import_user_slug','rishidemos'),(356,50,'_demo_importer_plus_sites_imported_post','1'),(357,50,'_demo_importer_enable_for_batch','1'),(358,50,'_demo_importer_plus_sites_image_hash','14fa4e9db6b7134ad9ee0813131d2a289eae0534'),(359,51,'_wp_attached_file','2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png'),(360,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:55:\"2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\";s:8:\"filesize\";i:3206;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:{}}}'),(361,51,'_elementor_source_image_hash','096ff9a72fcb881bff86b2b7f98a793046b57ebb'),(362,51,'_shortpixel_status','2.6000'),(363,51,'_wxr_import_user_slug','rishidemos'),(364,51,'_demo_importer_plus_sites_imported_post','1'),(365,51,'_demo_importer_enable_for_batch','1'),(366,51,'_demo_importer_plus_sites_image_hash','096ff9a72fcb881bff86b2b7f98a793046b57ebb'),(367,52,'_wp_attached_file','2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png'),(368,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:43:\"2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png\";s:8:\"filesize\";i:3367;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:{}}}'),(369,52,'_elementor_source_image_hash','be0f32c946369954c99d449de04bc4ba5e1d4ed8'),(370,52,'_shortpixel_status','2.5900'),(371,52,'_wxr_import_user_slug','rishidemos'),(372,52,'_demo_importer_plus_sites_imported_post','1'),(373,52,'_demo_importer_enable_for_batch','1'),(374,52,'_demo_importer_plus_sites_image_hash','be0f32c946369954c99d449de04bc4ba5e1d4ed8'),(375,53,'_wp_attached_file','2021/02/sign-1.png'),(376,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:384;s:6:\"height\";i:99;s:4:\"file\";s:18:\"2021/02/sign-1.png\";s:8:\"filesize\";i:1696;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"sign-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"sign-1-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1816;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"sign-1-272x99.png\";s:5:\"width\";i:272;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2798;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"sign-1-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"sign-1-197x99.png\";s:5:\"width\";i:197;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2209;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"sign-1-355x99.png\";s:5:\"width\";i:355;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3589;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"sign-1-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"sign-1-270x99.png\";s:5:\"width\";i:270;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2800;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"sign-1-170x99.png\";s:5:\"width\";i:170;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"sign-1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3031;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"sign-1-360x99.png\";s:5:\"width\";i:360;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(377,53,'_elementor_source_image_hash','e5eb12d1bc294c5b738f349e53c5934eaf40707e'),(378,53,'_shortpixel_status','2.6600'),(379,53,'_wxr_import_user_slug','rishidemos'),(380,53,'_demo_importer_plus_sites_imported_post','1'),(381,53,'_demo_importer_enable_for_batch','1'),(382,53,'_demo_importer_plus_sites_image_hash','e5eb12d1bc294c5b738f349e53c5934eaf40707e'),(383,54,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png'),(384,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:50:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png\";s:8:\"filesize\";i:124911;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41964;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220142;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141724;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147226;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93180;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199859;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215923;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x530.png\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276319;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82137;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x320.png\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173970;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52065;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146177;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x520.png\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(385,54,'_elementor_source_image_hash','f1d083346a86918c98fdfb5af364c5b319a8ce53'),(386,54,'_shortpixel_status','2.7500'),(387,54,'_wxr_import_user_slug','rishidemos'),(388,54,'_demo_importer_plus_sites_imported_post','1'),(389,54,'_demo_importer_enable_for_batch','1'),(390,54,'_demo_importer_plus_sites_image_hash','f1d083346a86918c98fdfb5af364c5b319a8ce53'),(391,57,'_wp_attached_file','2021/02/testimonial-bg-1.png'),(392,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:28:\"2021/02/testimonial-bg-1.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,57,'_shortpixel_status','2.7700'),(394,57,'_wxr_import_user_slug','rishidemos'),(395,57,'_demo_importer_plus_sites_imported_post','1'),(396,57,'_demo_importer_enable_for_batch','1'),(397,57,'_demo_importer_plus_sites_image_hash','40f20d081492a0732eefbfe19af0eefcc198fac6'),(398,57,'_elementor_source_image_hash','40f20d081492a0732eefbfe19af0eefcc198fac6'),(399,78,'_wp_attached_file','2021/02/testimonial-bg-1-1.png'),(400,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/02/testimonial-bg-1-1.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(401,78,'_elementor_source_image_hash','e72ad487c359939512a962433308e1756cd96e9f'),(402,78,'_shortpixel_status','2.7700'),(403,78,'_wxr_import_user_slug','rishidemos'),(404,78,'_demo_importer_plus_sites_imported_post','1'),(405,78,'_demo_importer_enable_for_batch','1'),(406,78,'_demo_importer_plus_sites_image_hash','e72ad487c359939512a962433308e1756cd96e9f'),(407,79,'_wp_attached_file','2021/02/make-a-reservation-1.png'),(408,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:997;s:4:\"file\";s:32:\"2021/02/make-a-reservation-1.png\";s:8:\"filesize\";i:645786;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69962;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1024x532.png\";s:5:\"width\";i:1024;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-768x399.png\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421561;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285143;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119769;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78546;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189152;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415103;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73176;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254988;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43108;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1536x798.png\";s:5:\"width\";i:1536;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1672642;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049002;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542611;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(409,79,'_elementor_source_image_hash','f9629ce754e413873f1cf73811014f558a616c8b'),(410,79,'_shortpixel_status','2.7400'),(411,79,'_wxr_import_user_slug','rishidemos'),(412,79,'_demo_importer_plus_sites_imported_post','1'),(413,79,'_demo_importer_enable_for_batch','1'),(414,79,'_demo_importer_plus_sites_image_hash','f9629ce754e413873f1cf73811014f558a616c8b'),(415,87,'_wp_attached_file','2021/02/about-bg.png'),(416,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/02/about-bg.png\";s:8:\"filesize\";i:665973;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about-bg-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72483;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"about-bg-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:703803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55265;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"about-bg-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415317;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"about-bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427573;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"about-bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185562;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"about-bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209702;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"about-bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120842;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"about-bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267085;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"about-bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288404;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"about-bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:599780;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"about-bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117173;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"about-bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"about-bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"about-bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196548;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"about-bg-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1498290;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:21:\"about-bg-1170x640.png\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1377905;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:20:\"about-bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:789186;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"about-bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(417,87,'_shortpixel_status','2.7100'),(418,87,'_wxr_import_user_slug','rishidemos'),(419,87,'_demo_importer_plus_sites_imported_post','1'),(420,87,'_demo_importer_enable_for_batch','1'),(421,87,'_demo_importer_plus_sites_image_hash','39b3626b7cb4495af60d85acfc889a19b761a214'),(422,87,'_elementor_source_image_hash','39b3626b7cb4495af60d85acfc889a19b761a214'),(423,88,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png'),(424,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:47:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42102;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146129;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112513;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98193;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136135;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86740;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137500;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52692;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150954;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144182;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(425,88,'_shortpixel_status','2.7500'),(426,88,'_wxr_import_user_slug','rishidemos'),(427,88,'_demo_importer_plus_sites_imported_post','1'),(428,88,'_demo_importer_enable_for_batch','1'),(429,88,'_demo_importer_plus_sites_image_hash','817b7b7f2fb047cc363ada5d1636af2e7973070c'),(430,88,'_elementor_source_image_hash','817b7b7f2fb047cc363ada5d1636af2e7973070c'),(431,89,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png'),(432,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:45:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png\";s:8:\"filesize\";i:45613;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42371;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-272x284.png\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103193;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93014;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-355x284.png\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112716;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83641;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53111;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98835;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(433,89,'_shortpixel_status','2.7500'),(434,89,'_wxr_import_user_slug','rishidemos'),(435,89,'_demo_importer_plus_sites_imported_post','1'),(436,89,'_demo_importer_enable_for_batch','1'),(437,89,'_demo_importer_plus_sites_image_hash','4ecfd12bf420698f0033b47bd032a82ea9e9798f'),(438,89,'_elementor_source_image_hash','4ecfd12bf420698f0033b47bd032a82ea9e9798f'),(439,90,'_wp_attached_file','2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png'),(440,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:42:\"2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png\";s:8:\"filesize\";i:64391;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46988;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154901;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136626;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102540;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172411;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91769;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175171;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58835;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164600;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(441,90,'_shortpixel_status','2.7100'),(442,90,'_wxr_import_user_slug','rishidemos'),(443,90,'_demo_importer_plus_sites_imported_post','1'),(444,90,'_demo_importer_enable_for_batch','1'),(445,90,'_demo_importer_plus_sites_image_hash','9fcddd6b3548ac89999dd5e1e8d5888b54a195d5'),(446,90,'_elementor_source_image_hash','9fcddd6b3548ac89999dd5e1e8d5888b54a195d5'),(447,91,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png'),(448,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png\";s:8:\"filesize\";i:52507;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-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:41017;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132092;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88441;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125060;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81100;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127186;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50944;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-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:139816;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(449,91,'_shortpixel_status','2.7500'),(450,91,'_wxr_import_user_slug','rishidemos'),(451,91,'_demo_importer_plus_sites_imported_post','1'),(452,91,'_demo_importer_enable_for_batch','1'),(453,91,'_demo_importer_plus_sites_image_hash','29915ced6de59b23e310ec079245442a33f04d7e'),(454,91,'_elementor_source_image_hash','29915ced6de59b23e310ec079245442a33f04d7e'),(455,92,'_wp_attached_file','2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png'),(456,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:48:\"2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png\";s:8:\"filesize\";i:61427;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46454;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147301;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117842;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100502;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150543;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89952;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57704;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(457,92,'_shortpixel_status','2.7400'),(458,92,'_wxr_import_user_slug','rishidemos'),(459,92,'_demo_importer_plus_sites_imported_post','1'),(460,92,'_demo_importer_enable_for_batch','1'),(461,92,'_demo_importer_plus_sites_image_hash','1813df4f152ea6d0d712296419de34d39dfa9e59'),(462,92,'_elementor_source_image_hash','1813df4f152ea6d0d712296419de34d39dfa9e59'),(463,93,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1-1.png'),(464,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_47_52-1-1.png\";s:8:\"filesize\";i:56410;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47853;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154542;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122724;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108367;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155267;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157239;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59556;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(465,93,'_shortpixel_status','2.7800'),(466,93,'_wxr_import_user_slug','rishidemos'),(467,93,'_demo_importer_plus_sites_imported_post','1'),(468,93,'_demo_importer_enable_for_batch','1'),(469,93,'_demo_importer_plus_sites_image_hash','a80031178073c3d19413f0b24493b5190ba04315'),(470,93,'_elementor_source_image_hash','a80031178073c3d19413f0b24493b5190ba04315'),(471,94,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1-1.png'),(472,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_48_28-1-1.png\";s:8:\"filesize\";i:49347;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42352;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126837;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83709;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127981;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82625;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130221;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138525;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(473,94,'_shortpixel_status','2.7800'),(474,94,'_wxr_import_user_slug','rishidemos'),(475,94,'_demo_importer_plus_sites_imported_post','1'),(476,94,'_demo_importer_enable_for_batch','1'),(477,94,'_demo_importer_plus_sites_image_hash','778060f83788b57f12376ee6f54e91b77a08e71e'),(478,94,'_elementor_source_image_hash','778060f83788b57f12376ee6f54e91b77a08e71e'),(479,95,'_wp_attached_file','2021/02/about-bg-1.png'),(480,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2021/02/about-bg-1.png\";s:8:\"filesize\";i:665973;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"about-bg-1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72483;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:703803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"about-bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55265;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"about-bg-1-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415317;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:22:\"about-bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427573;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185562;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:22:\"about-bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209702;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120842;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:22:\"about-bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267085;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:22:\"about-bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288404;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:22:\"about-bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:599780;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117173;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:22:\"about-bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:22:\"about-bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:22:\"about-bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196548;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1498290;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1170x640.png\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1377905;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:22:\"about-bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:789186;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:22:\"about-bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(481,95,'_elementor_source_image_hash','cef2e3e23b89edfe6e7bd4117a3e7a859fe9df48'),(482,95,'_shortpixel_status','2.7100'),(483,95,'_wxr_import_user_slug','rishidemos'),(484,95,'_demo_importer_plus_sites_imported_post','1'),(485,95,'_demo_importer_enable_for_batch','1'),(486,95,'_demo_importer_plus_sites_image_hash','cef2e3e23b89edfe6e7bd4117a3e7a859fe9df48'),(487,96,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png'),(488,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:47:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png\";s:8:\"filesize\";i:45613;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-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:42371;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-272x284.png\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103193;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93014;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-355x284.png\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112716;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83641;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53111;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98835;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(489,96,'_elementor_source_image_hash','fdf94a401c1ca585b326c403eb411f7394acfc32'),(490,96,'_shortpixel_status','2.7500'),(491,96,'_wxr_import_user_slug','rishidemos'),(492,96,'_demo_importer_plus_sites_imported_post','1'),(493,96,'_demo_importer_enable_for_batch','1'),(494,96,'_demo_importer_plus_sites_image_hash','fdf94a401c1ca585b326c403eb411f7394acfc32'),(495,97,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png'),(496,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:52:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png\";s:8:\"filesize\";i:52507;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41017;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132092;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88441;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125060;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81100;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127186;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50944;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139816;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(497,97,'_elementor_source_image_hash','5f4a388b156f607d13483958ed29a01d926d6417'),(498,97,'_shortpixel_status','2.7500'),(499,97,'_wxr_import_user_slug','rishidemos'),(500,97,'_demo_importer_plus_sites_imported_post','1'),(501,97,'_demo_importer_enable_for_batch','1'),(502,97,'_demo_importer_plus_sites_image_hash','5f4a388b156f607d13483958ed29a01d926d6417'),(503,98,'_wp_attached_file','2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png'),(504,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:44:\"2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png\";s:8:\"filesize\";i:64391;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46988;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154901;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136626;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102540;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172411;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91769;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175171;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58835;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164600;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(505,98,'_elementor_source_image_hash','817612daecbc0a9b62caf1ce9e50722bfade5c13'),(506,98,'_shortpixel_status','2.7100'),(507,98,'_wxr_import_user_slug','rishidemos'),(508,98,'_demo_importer_plus_sites_imported_post','1'),(509,98,'_demo_importer_enable_for_batch','1'),(510,98,'_demo_importer_plus_sites_image_hash','817612daecbc0a9b62caf1ce9e50722bfade5c13'),(511,99,'_wp_attached_file','2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png'),(512,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png\";s:8:\"filesize\";i:61427;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46454;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147301;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117842;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100502;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150543;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89952;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57704;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(513,99,'_elementor_source_image_hash','9bbc45b6ea25fccbbb29e1c8e9f9aee8a666c1e9'),(514,99,'_shortpixel_status','2.7400'),(515,99,'_wxr_import_user_slug','rishidemos'),(516,99,'_demo_importer_plus_sites_imported_post','1'),(517,99,'_demo_importer_enable_for_batch','1'),(518,99,'_demo_importer_plus_sites_image_hash','9bbc45b6ea25fccbbb29e1c8e9f9aee8a666c1e9'),(519,100,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1-2.png'),(520,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_47_52-1-2.png\";s:8:\"filesize\";i:56410;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-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:47853;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154542;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122724;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108367;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155267;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157239;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59556;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-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:160149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(521,100,'_elementor_source_image_hash','5d0ca1b2a25fa81b417353b6ac59ba239fd7b32c'),(522,100,'_shortpixel_status','2.7800'),(523,100,'_wxr_import_user_slug','rishidemos'),(524,100,'_demo_importer_plus_sites_imported_post','1'),(525,100,'_demo_importer_enable_for_batch','1'),(526,100,'_demo_importer_plus_sites_image_hash','5d0ca1b2a25fa81b417353b6ac59ba239fd7b32c'),(527,101,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png'),(528,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:49:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42102;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146129;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112513;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98193;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136135;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86740;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137500;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52692;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150954;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144182;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,101,'_elementor_source_image_hash','a4b8746320a1e7d029e32e63f4588d5f93656075'),(530,101,'_shortpixel_status','2.7500'),(531,101,'_wxr_import_user_slug','rishidemos'),(532,101,'_demo_importer_plus_sites_imported_post','1'),(533,101,'_demo_importer_enable_for_batch','1'),(534,101,'_demo_importer_plus_sites_image_hash','a4b8746320a1e7d029e32e63f4588d5f93656075'),(535,102,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1-2.png'),(536,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_48_28-1-2.png\";s:8:\"filesize\";i:49347;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-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:42352;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126837;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83709;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127981;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82625;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130221;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-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:138525;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(537,102,'_elementor_source_image_hash','710ab60a71c37dc91e8554ed141e630f6eb4e4c1'),(538,102,'_shortpixel_status','2.7800'),(539,102,'_wxr_import_user_slug','rishidemos'),(540,102,'_demo_importer_plus_sites_imported_post','1'),(541,102,'_demo_importer_enable_for_batch','1'),(542,102,'_demo_importer_plus_sites_image_hash','710ab60a71c37dc91e8554ed141e630f6eb4e4c1'),(543,134,'_wp_attached_file','2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg'),(544,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:402;s:4:\"file\";s:45:\"2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg\";s:8:\"filesize\";i:42419;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7502;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19872;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22466;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14265;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27264;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28989;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14071;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-375x320.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29411;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9107;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20928;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21219;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(545,134,'_shortpixel_status','2.6500'),(548,134,'_demo_importer_plus_sites_imported_post','1'),(549,134,'_demo_importer_enable_for_batch','1'),(550,134,'_demo_importer_plus_sites_image_hash','e42c8298291f8cb96c12cd3d0654d4bc232ea6e5'),(551,134,'_elementor_source_image_hash','e42c8298291f8cb96c12cd3d0654d4bc232ea6e5'),(552,296,'_wp_attached_file','2021/03/4817.jpg'),(553,296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:401;s:4:\"file\";s:16:\"2021/03/4817.jpg\";s:8:\"filesize\";i:56872;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"4817-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24935;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"4817-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8596;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"4817-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"4817-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27525;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"4817-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17576;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"4817-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34742;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"4817-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37214;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"4817-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16815;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"4817-375x320.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42575;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"4817-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10691;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"4817-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26411;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"4817-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(554,296,'_shortpixel_status','2.6100'),(557,296,'_demo_importer_plus_sites_imported_post','1'),(558,296,'_demo_importer_enable_for_batch','1'),(559,296,'_demo_importer_plus_sites_image_hash','2621042a4977290d56d726768ae246ce28be5fe2'),(560,296,'_elementor_source_image_hash','2621042a4977290d56d726768ae246ce28be5fe2'),(561,564,'_wp_attached_file','2021/08/woocommerce-placeholder.png'),(562,564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/08/woocommerce-placeholder.png\";s:8:\"filesize\";i:20623;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11485;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54573;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25720;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12320;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15213;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9793;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14972;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15988;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32273;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9447;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30624;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4877;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11485;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:36:\"woocommerce-placeholder-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106883;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51869;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(563,564,'_shortpixel_status','2.7900'),(564,564,'_demo_importer_plus_sites_imported_post','1'),(565,564,'_demo_importer_enable_for_batch','1'),(566,564,'_demo_importer_plus_sites_image_hash','2a01c1c9727ec8db9bb248c9856807a313cdb8a9'),(567,564,'_elementor_source_image_hash','2a01c1c9727ec8db9bb248c9856807a313cdb8a9'),(568,608,'_wp_attached_file','2021/11/bg.jpg'),(569,608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2021/11/bg.jpg\";s:8:\"filesize\";i:276610;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"bg-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13414;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"bg-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137505;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5720;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"bg-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81360;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:14:\"bg-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48831;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:14:\"bg-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18203;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:14:\"bg-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:14:\"bg-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10968;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:14:\"bg-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28941;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:14:\"bg-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31561;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:14:\"bg-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68474;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:14:\"bg-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12754;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:14:\"bg-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45734;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:14:\"bg-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7258;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:14:\"bg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20643;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"bg-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284251;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"bg-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176203;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:14:\"bg-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91704;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:14:\"bg-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(570,608,'_shortpixel_status','2.8400'),(573,608,'_demo_importer_plus_sites_imported_post','1'),(574,608,'_demo_importer_enable_for_batch','1'),(575,608,'_demo_importer_plus_sites_image_hash','b5214bf5a3481864f5fb911a4932aa1fe87e6a57'),(576,608,'_elementor_source_image_hash','b5214bf5a3481864f5fb911a4932aa1fe87e6a57'),(577,762,'_wp_attached_file','2021/11/logo.jpg'),(578,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:16:\"2021/11/logo.jpg\";s:8:\"filesize\";i:2242;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x64.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1759;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"logo-272x65.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2377;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"logo-197x65.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2037;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"logo-270x65.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2409;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"logo-170x65.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1877;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"logo-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2615;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(579,762,'_shortpixel_status','2.6300'),(580,762,'_wxr_import_user_slug','rishidemos'),(581,762,'_demo_importer_plus_sites_imported_post','1'),(582,762,'_demo_importer_enable_for_batch','1'),(583,762,'_demo_importer_plus_sites_image_hash','f016248afa0a831b42fcc22966c3d6cffd60ebc1'),(584,762,'_elementor_source_image_hash','f016248afa0a831b42fcc22966c3d6cffd60ebc1'),(585,764,'_wp_attached_file','2021/11/logo.png'),(586,764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:16:\"2021/11/logo.png\";s:8:\"filesize\";i:1353;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1317;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"logo-272x65.png\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2501;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"logo-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1518;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"logo-270x65.png\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2474;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"logo-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1426;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2776;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(587,764,'_shortpixel_status','2.7300'),(588,764,'_wxr_import_user_slug','rishidemos'),(589,764,'_demo_importer_plus_sites_imported_post','1'),(590,764,'_demo_importer_enable_for_batch','1'),(591,764,'_demo_importer_plus_sites_image_hash','363a2bc8a3aaf4d7e07dc258f3c281f61b96b026'),(592,764,'_elementor_source_image_hash','363a2bc8a3aaf4d7e07dc258f3c281f61b96b026'),(593,767,'_wp_attached_file','2021/11/facebook-logo.svg'),(594,767,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:492;s:5:\"width\";i:8;s:6:\"height\";i:14;}'),(598,767,'_demo_importer_plus_sites_imported_post','1'),(599,767,'_demo_importer_enable_for_batch','1'),(600,767,'_demo_importer_plus_sites_image_hash','ddd34ec12c989da7335311667d2f46d8212d1b20'),(601,767,'_elementor_source_image_hash','ddd34ec12c989da7335311667d2f46d8212d1b20'),(602,768,'_wp_attached_file','2021/11/twitter.svg'),(603,768,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:780;s:5:\"width\";i:15;s:6:\"height\";i:12;}'),(607,768,'_demo_importer_plus_sites_imported_post','1'),(608,768,'_demo_importer_enable_for_batch','1'),(609,768,'_demo_importer_plus_sites_image_hash','5c60eaded3c88102f10631ab0d09bd301e853501'),(610,768,'_elementor_source_image_hash','5c60eaded3c88102f10631ab0d09bd301e853501'),(611,769,'_wp_attached_file','2021/11/instagram.svg'),(612,769,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:843;s:5:\"width\";i:16;s:6:\"height\";i:16;}'),(616,769,'_demo_importer_plus_sites_imported_post','1'),(617,769,'_demo_importer_enable_for_batch','1'),(618,769,'_demo_importer_plus_sites_image_hash','ab0cf6488d2c1ae55d12b275eccc4596bb22793e'),(619,769,'_elementor_source_image_hash','ab0cf6488d2c1ae55d12b275eccc4596bb22793e'),(620,770,'_wp_attached_file','2021/11/linkedin.svg'),(621,770,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:956;s:5:\"width\";i:13;s:6:\"height\";i:13;}'),(625,770,'_demo_importer_plus_sites_imported_post','1'),(626,770,'_demo_importer_enable_for_batch','1'),(627,770,'_demo_importer_plus_sites_image_hash','eb0cda7fc93b4cc21de23a626da2c97371af7f2d'),(628,770,'_elementor_source_image_hash','eb0cda7fc93b4cc21de23a626da2c97371af7f2d'),(629,829,'_wp_attached_file','2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg'),(630,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:39:\"2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg\";s:8:\"filesize\";i:31257;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6770;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16308;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19137;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12166;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23309;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23740;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12069;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23661;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7966;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17066;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20733;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(631,829,'_shortpixel_status','2.6600'),(634,829,'_demo_importer_plus_sites_imported_post','1'),(635,829,'_demo_importer_enable_for_batch','1'),(636,829,'_demo_importer_plus_sites_image_hash','a0fcc428d1b87f2f8c5063505de868227d358ab9'),(637,829,'_elementor_source_image_hash','a0fcc428d1b87f2f8c5063505de868227d358ab9'),(638,837,'_wp_attached_file','2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg'),(639,837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:222;s:4:\"file\";s:49:\"2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg\";s:8:\"filesize\";i:20219;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7628;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-197x222.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12286;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14089;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(640,837,'_shortpixel_status','2.6500'),(643,837,'_demo_importer_plus_sites_imported_post','1'),(644,837,'_demo_importer_enable_for_batch','1'),(645,837,'_demo_importer_plus_sites_image_hash','8fe10f0776556cbe38df7b09208077f08934f8f7'),(646,837,'_elementor_source_image_hash','8fe10f0776556cbe38df7b09208077f08934f8f7'),(647,839,'_wp_attached_file','2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg'),(648,839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:730;s:6:\"height\";i:400;s:4:\"file\";s:48:\"2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg\";s:8:\"filesize\";i:45829;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7777;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38520;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19148;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21857;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13471;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26362;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27839;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-570x400.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39732;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13980;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36315;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9300;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20773;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(649,839,'_shortpixel_status','2.8000'),(652,839,'_demo_importer_plus_sites_imported_post','1'),(653,839,'_demo_importer_enable_for_batch','1'),(654,839,'_demo_importer_plus_sites_image_hash','9d7b0d9833889bab4ca74c44670a2185de6dc495'),(655,839,'_elementor_source_image_hash','9d7b0d9833889bab4ca74c44670a2185de6dc495'),(656,840,'_wp_attached_file','2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-scaled.jpg'),(657,840,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-scaled.jpg\";s:8:\"filesize\";i:334880;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13859;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7442;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50850;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33684;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18005;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18466;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13066;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24459;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25963;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45010;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12025;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29632;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8974;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19142;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145456;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233018;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83794;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51295;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:38:\"jordi-pujadas-MHzYnDM34IQ-unsplash.jpg\";}'),(658,840,'_shortpixel_status','2.7900'),(661,840,'_demo_importer_plus_sites_imported_post','1'),(662,840,'_demo_importer_enable_for_batch','1'),(663,840,'_demo_importer_plus_sites_image_hash','d97fb7613404dfae70123dbd9baff7c1f17577b9'),(664,840,'_elementor_source_image_hash','d97fb7613404dfae70123dbd9baff7c1f17577b9'),(665,841,'_wp_attached_file','2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg'),(666,841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:48:\"2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\";s:8:\"filesize\";i:18166;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7149;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17477;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18042;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12821;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22923;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23616;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11869;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19271;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8428;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-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:17886;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15776;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(667,841,'_shortpixel_status','2.2100'),(670,841,'_demo_importer_plus_sites_imported_post','1'),(671,841,'_demo_importer_enable_for_batch','1'),(672,841,'_demo_importer_plus_sites_image_hash','af7d0e202574ee07ea6d8eab314e9aba157be79d'),(673,841,'_elementor_source_image_hash','af7d0e202574ee07ea6d8eab314e9aba157be79d'),(674,856,'_wp_attached_file','2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg'),(675,856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:46:\"2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\";s:8:\"filesize\";i:30679;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9461;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25248;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28335;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18138;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36557;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37484;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17052;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32297;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11536;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-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:26705;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(676,856,'_shortpixel_status','2.1900'),(679,856,'_demo_importer_plus_sites_imported_post','1'),(680,856,'_demo_importer_enable_for_batch','1'),(681,856,'_demo_importer_plus_sites_image_hash','c9e87778d00988dc1a22e2184ff6f8f527f36e1d'),(682,856,'_elementor_source_image_hash','c9e87778d00988dc1a22e2184ff6f8f527f36e1d'),(683,860,'_wp_attached_file','2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg'),(684,860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:39:\"2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\";s:8:\"filesize\";i:29219;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8471;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21196;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21968;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15178;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30764;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31740;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13138;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26935;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10187;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-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:22149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20026;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(685,860,'_shortpixel_status','2.0400'),(688,860,'_demo_importer_plus_sites_imported_post','1'),(689,860,'_demo_importer_enable_for_batch','1'),(690,860,'_demo_importer_plus_sites_image_hash','eeec94945de88f8af23e244e040dcbcdcc3dcc71'),(691,860,'_elementor_source_image_hash','eeec94945de88f8af23e244e040dcbcdcc3dcc71'),(692,864,'_wp_attached_file','2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg'),(693,864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:44:\"2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\";s:8:\"filesize\";i:19922;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7172;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17442;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19504;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12904;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23651;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24283;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12530;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20888;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8479;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-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:18138;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(694,864,'_shortpixel_status','2.1700'),(697,864,'_demo_importer_plus_sites_imported_post','1'),(698,864,'_demo_importer_enable_for_batch','1'),(699,864,'_demo_importer_plus_sites_image_hash','1d1833c22f5d3f8564652d99f203466a42656cfa'),(700,864,'_elementor_source_image_hash','1d1833c22f5d3f8564652d99f203466a42656cfa'),(701,868,'_wp_attached_file','2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg'),(702,868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:50:\"2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\";s:8:\"filesize\";i:21030;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6711;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17779;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17877;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12525;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24776;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25631;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11000;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8140;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-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:18266;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(703,868,'_shortpixel_status','2.1700'),(706,868,'_demo_importer_plus_sites_imported_post','1'),(707,868,'_demo_importer_enable_for_batch','1'),(708,868,'_demo_importer_plus_sites_image_hash','693100778404de87685ee83e0c8d95c49aeb6978'),(709,868,'_elementor_source_image_hash','693100778404de87685ee83e0c8d95c49aeb6978'),(710,1029,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg'),(711,1029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:48:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\";s:8:\"filesize\";i:29137;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6887;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16974;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15781;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12414;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21078;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22419;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x530.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35966;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x320.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23147;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8198;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16915;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x520.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34248;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14946;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(712,1029,'_shortpixel_status','2.8400'),(715,1029,'_demo_importer_plus_sites_imported_post','1'),(716,1029,'_demo_importer_enable_for_batch','1'),(717,1029,'_demo_importer_plus_sites_image_hash','8abe75da323661305c77664f110942082443a7bb'),(718,1029,'_elementor_source_image_hash','8abe75da323661305c77664f110942082443a7bb'),(719,1073,'_wp_attached_file','2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg'),(720,1073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:44:\"2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg\";s:8:\"filesize\";i:75471;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9477;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1024x423.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7716;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-768x318.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37531;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39336;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21171;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20190;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15328;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28352;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30113;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53364;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12691;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32819;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9338;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21914;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1536x635.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102868;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93402;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59475;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(721,1073,'_shortpixel_status','2.8800'),(724,1073,'_demo_importer_plus_sites_imported_post','1'),(725,1073,'_demo_importer_enable_for_batch','1'),(726,1073,'_demo_importer_plus_sites_image_hash','ec0f435ccac79073ec9eb4fea9a224814f5d3bff'),(727,1073,'_elementor_source_image_hash','ec0f435ccac79073ec9eb4fea9a224814f5d3bff'),(728,1107,'_wp_attached_file','2021/11/alexandra-lammerink-1.jpg'),(729,1107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:33:\"2021/11/alexandra-lammerink-1.jpg\";s:8:\"filesize\";i:2800;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:{}}}'),(730,1107,'_shortpixel_status','2.6500'),(733,1107,'_demo_importer_plus_sites_imported_post','1'),(734,1107,'_demo_importer_enable_for_batch','1'),(735,1107,'_demo_importer_plus_sites_image_hash','f96aca2680c0d7321ca2163798078198daee03e0'),(736,1107,'_elementor_source_image_hash','f96aca2680c0d7321ca2163798078198daee03e0'),(737,1109,'_wp_attached_file','2021/11/screenshot-22.jpg'),(738,1109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:25:\"2021/11/screenshot-22.jpg\";s:8:\"filesize\";i:23018;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"screenshot-22-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"screenshot-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5078;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12030;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11836;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9228;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:25:\"screenshot-22-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15580;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16864;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7752;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14717;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"screenshot-22-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"screenshot-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12349;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(739,1109,'_shortpixel_status','2.6900'),(742,1109,'_demo_importer_plus_sites_imported_post','1'),(743,1109,'_demo_importer_enable_for_batch','1'),(744,1109,'_demo_importer_plus_sites_image_hash','d75fcad725bc5d84153af6891c7049ea0d42d704'),(745,1109,'_elementor_source_image_hash','d75fcad725bc5d84153af6891c7049ea0d42d704'),(746,1110,'_wp_attached_file','2021/11/screenshot-20.jpg'),(747,1110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:25:\"2021/11/screenshot-20.jpg\";s:8:\"filesize\";i:23504;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"screenshot-20-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"screenshot-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5236;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12087;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11879;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9407;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:25:\"screenshot-20-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15557;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17038;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7704;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14696;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"screenshot-20-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6070;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"screenshot-20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12465;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11406;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(748,1110,'_shortpixel_status','2.6800'),(751,1110,'_demo_importer_plus_sites_imported_post','1'),(752,1110,'_demo_importer_enable_for_batch','1'),(753,1110,'_demo_importer_plus_sites_image_hash','3dce2e8967a9502b39ca3c9d2eb358f8fb35edc5'),(754,1110,'_elementor_source_image_hash','3dce2e8967a9502b39ca3c9d2eb358f8fb35edc5'),(755,1117,'_wp_attached_file','2021/11/screenshot-4.jpg'),(756,1117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:24:\"2021/11/screenshot-4.jpg\";s:8:\"filesize\";i:19449;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-4-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4319;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10111;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10059;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7782;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-4-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13070;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14352;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6465;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12540;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-4-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4999;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10328;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(757,1117,'_shortpixel_status','2.6800'),(760,1117,'_demo_importer_plus_sites_imported_post','1'),(761,1117,'_demo_importer_enable_for_batch','1'),(762,1117,'_demo_importer_plus_sites_image_hash','2096d2ef6b49360a094513857aed1a6cba39d5ac'),(763,1117,'_elementor_source_image_hash','2096d2ef6b49360a094513857aed1a6cba39d5ac'),(764,1210,'_wp_attached_file','2021/11/Path-24976.png'),(765,1210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:167;s:4:\"file\";s:22:\"2021/11/Path-24976.png\";s:8:\"filesize\";i:663;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Path-24976-134x150.png\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(766,1210,'_shortpixel_status','2.8700'),(769,1210,'_demo_importer_plus_sites_imported_post','1'),(770,1210,'_demo_importer_enable_for_batch','1'),(771,1210,'_demo_importer_plus_sites_image_hash','d4ae45e438b2b80d03002b89218b4616b05e7390'),(772,1210,'_elementor_source_image_hash','d4ae45e438b2b80d03002b89218b4616b05e7390'),(773,1211,'_wp_attached_file','2021/11/Group-149.png'),(774,1211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:167;s:4:\"file\";s:21:\"2021/11/Group-149.png\";s:8:\"filesize\";i:782;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-149-134x150.png\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1457;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(775,1211,'_shortpixel_status','2.8700'),(778,1211,'_demo_importer_plus_sites_imported_post','1'),(779,1211,'_demo_importer_enable_for_batch','1'),(780,1211,'_demo_importer_plus_sites_image_hash','1db4ac5f4bae9cdf3330dcb601a20b33d1b982a3'),(781,1211,'_elementor_source_image_hash','1db4ac5f4bae9cdf3330dcb601a20b33d1b982a3'),(782,3080,'_wp_attached_file','2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg'),(783,3080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:46:\"2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg\";s:8:\"filesize\";i:144056;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22321;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10027;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99221;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59112;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30108;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30803;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20976;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40880;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43570;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80162;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18286;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53629;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12347;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-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:30959;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277511;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159480;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96558;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(784,3080,'_shortpixel_status','2.6200'),(787,3080,'_demo_importer_plus_sites_imported_post','1'),(788,3080,'_demo_importer_enable_for_batch','1'),(789,3080,'_demo_importer_plus_sites_image_hash','964a708502186c21a7743a9ef98303985c38ca05'),(790,3080,'_elementor_source_image_hash','964a708502186c21a7743a9ef98303985c38ca05'),(791,3081,'_wp_attached_file','2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg'),(792,3081,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:41:\"2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg\";s:8:\"filesize\";i:103370;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"nikldn-HzVHlwvQlyw-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38374;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20565;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20809;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14991;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29396;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51762;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13102;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36734;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-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:21380;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"nikldn-HzVHlwvQlyw-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172944;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:42:\"nikldn-HzVHlwvQlyw-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106028;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60466;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(793,3081,'_shortpixel_status','2.5700'),(796,3081,'_demo_importer_plus_sites_imported_post','1'),(797,3081,'_demo_importer_enable_for_batch','1'),(798,3081,'_demo_importer_plus_sites_image_hash','d0e7c364d740b37c9411b888f6ae845c8d2da082'),(799,3081,'_elementor_source_image_hash','d0e7c364d740b37c9411b888f6ae845c8d2da082'),(800,3082,'_wp_attached_file','2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg'),(801,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:50:\"2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg\";s:8:\"filesize\";i:93218;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17510;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70122;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41121;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19149;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23563;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13233;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27133;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28895;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52783;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14807;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39705;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9350;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-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:21092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194847;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113891;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68498;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22458;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,3082,'_shortpixel_status','2.6100'),(805,3082,'_demo_importer_plus_sites_imported_post','1'),(806,3082,'_demo_importer_enable_for_batch','1'),(807,3082,'_demo_importer_plus_sites_image_hash','7dc2a92f4a8c6f0dea9c18a9182d3523c59d0d99'),(808,3082,'_elementor_source_image_hash','7dc2a92f4a8c6f0dea9c18a9182d3523c59d0d99'),(809,3086,'_wp_attached_file','2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg'),(810,3086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:52:\"2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg\";s:8:\"filesize\";i:93218;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17510;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70122;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41121;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19149;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23563;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13233;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27133;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28895;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52783;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14807;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39705;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9350;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-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:21092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194847;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113891;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68498;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22458;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(811,3086,'_shortpixel_status','2.6100'),(814,3086,'_demo_importer_plus_sites_imported_post','1'),(815,3086,'_demo_importer_enable_for_batch','1'),(816,3086,'_demo_importer_plus_sites_image_hash','633c68a85320ffc7c12619b711a399691eef47f2'),(817,3086,'_elementor_source_image_hash','633c68a85320ffc7c12619b711a399691eef47f2'),(818,3087,'_wp_attached_file','2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg'),(819,3087,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:55:\"2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg\";s:8:\"filesize\";i:113490;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18094;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8230;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81156;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47579;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23338;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24952;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16229;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32405;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34587;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64517;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15112;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44076;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10134;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-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:24540;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233491;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:56:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134304;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78860;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(820,3087,'_shortpixel_status','2.6400'),(823,3087,'_demo_importer_plus_sites_imported_post','1'),(824,3087,'_demo_importer_enable_for_batch','1'),(825,3087,'_demo_importer_plus_sites_image_hash','3435bbe1b5664b4b781a7c321a38c57b7d0167b1'),(826,3087,'_elementor_source_image_hash','3435bbe1b5664b4b781a7c321a38c57b7d0167b1'),(827,3138,'_wp_attached_file','2021/11/logo-1.png'),(828,3138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-1.png\";s:8:\"filesize\";i:1346;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"logo-1-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-1-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1342;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"logo-1-272x65.png\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2552;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-1-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1548;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"logo-1-270x65.png\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2498;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-1-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1445;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"logo-1-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2812;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(829,3138,'_shortpixel_status','2.7300'),(830,3138,'_wxr_import_user_slug','rishidemos'),(831,3138,'_demo_importer_plus_sites_imported_post','1'),(832,3138,'_demo_importer_enable_for_batch','1'),(833,3138,'_demo_importer_plus_sites_image_hash','9414a08cdf00090e904440fdcdb9c8c0267b5ba9'),(834,3138,'_elementor_source_image_hash','9414a08cdf00090e904440fdcdb9c8c0267b5ba9'),(835,3148,'_wp_attached_file','2021/11/logo-2.png'),(836,3148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-2.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-2-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-2-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-2-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(837,3148,'_shortpixel_status','2.7200'),(838,3148,'_wxr_import_user_slug','rishidemos'),(839,3148,'_demo_importer_plus_sites_imported_post','1'),(840,3148,'_demo_importer_enable_for_batch','1'),(841,3148,'_demo_importer_plus_sites_image_hash','91365222e5667dad6efd36c382fa072de9f55cd7'),(842,3148,'_elementor_source_image_hash','91365222e5667dad6efd36c382fa072de9f55cd7'),(843,3150,'_wp_attached_file','2021/11/logo-3.png'),(844,3150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-3.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-3-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-3-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-3-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(845,3150,'_shortpixel_status','2.7200'),(846,3150,'_wxr_import_user_slug','rishidemos'),(847,3150,'_demo_importer_plus_sites_imported_post','1'),(848,3150,'_demo_importer_enable_for_batch','1'),(849,3150,'_demo_importer_plus_sites_image_hash','8b6de58814cd28707f197e8549c4554731b0afdb'),(850,3150,'_elementor_source_image_hash','8b6de58814cd28707f197e8549c4554731b0afdb'),(851,3151,'_wp_attached_file','2021/11/logo-4.png'),(852,3151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-4.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-4-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-4-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-4-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(853,3151,'_shortpixel_status','2.7200'),(854,3151,'_wxr_import_user_slug','rishidemos'),(855,3151,'_demo_importer_plus_sites_imported_post','1'),(856,3151,'_demo_importer_enable_for_batch','1'),(857,3151,'_demo_importer_plus_sites_image_hash','21ad745d694eed4bd4f4dd8d8e72db40d7886579'),(858,3151,'_elementor_source_image_hash','21ad745d694eed4bd4f4dd8d8e72db40d7886579'),(859,3163,'_wp_attached_file','2021/11/cayla-1.jpg'),(860,3163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:19:\"2021/11/cayla-1.jpg\";s:8:\"filesize\";i:2047;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:{}}}'),(861,3163,'_shortpixel_status','2.5400'),(864,3163,'_demo_importer_plus_sites_imported_post','1'),(865,3163,'_demo_importer_enable_for_batch','1'),(866,3163,'_demo_importer_plus_sites_image_hash','5ba4503b63e9ce2206fcae93fa3adb9dec383dca'),(867,3163,'_elementor_source_image_hash','5ba4503b63e9ce2206fcae93fa3adb9dec383dca'),(868,3187,'_wp_attached_file','2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg'),(869,3187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:49:\"2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\";s:8:\"filesize\";i:1554;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:{}}}'),(870,3187,'_shortpixel_status','2.6500'),(873,3187,'_demo_importer_plus_sites_imported_post','1'),(874,3187,'_demo_importer_enable_for_batch','1'),(875,3187,'_demo_importer_plus_sites_image_hash','3f0bbb624ad3b79bbcdd2bfe7ab5823c4cc6a3b0'),(876,3187,'_elementor_source_image_hash','3f0bbb624ad3b79bbcdd2bfe7ab5823c4cc6a3b0'),(877,3188,'_wp_attached_file','2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg'),(878,3188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\";s:8:\"filesize\";i:1637;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:{}}}'),(879,3188,'_shortpixel_status','2.6400'),(882,3188,'_demo_importer_plus_sites_imported_post','1'),(883,3188,'_demo_importer_enable_for_batch','1'),(884,3188,'_demo_importer_plus_sites_image_hash','cd77d0130a96730aa0c324ba0f1e0b69413fa3f1'),(885,3188,'_elementor_source_image_hash','cd77d0130a96730aa0c324ba0f1e0b69413fa3f1'),(886,3189,'_wp_attached_file','2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg'),(887,3189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\";s:8:\"filesize\";i:1362;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:{}}}'),(888,3189,'_shortpixel_status','2.7000'),(891,3189,'_demo_importer_plus_sites_imported_post','1'),(892,3189,'_demo_importer_enable_for_batch','1'),(893,3189,'_demo_importer_plus_sites_image_hash','0134c7fe9424c0b061e3a21bf8d68151a8e8fca3'),(894,3189,'_elementor_source_image_hash','0134c7fe9424c0b061e3a21bf8d68151a8e8fca3'),(895,3190,'_wp_attached_file','2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg'),(896,3190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg\";s:8:\"filesize\";i:1668;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:{}}}'),(897,3190,'_shortpixel_status','2.6300'),(900,3190,'_demo_importer_plus_sites_imported_post','1'),(901,3190,'_demo_importer_enable_for_batch','1'),(902,3190,'_demo_importer_plus_sites_image_hash','146a1ed5dabc2eee935680173ea61b3082704507'),(903,3190,'_elementor_source_image_hash','146a1ed5dabc2eee935680173ea61b3082704507'),(904,3197,'_wp_attached_file','2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg'),(905,3197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:44:\"2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\";s:8:\"filesize\";i:1643;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:{}}}'),(906,3197,'_shortpixel_status','2.6500'),(909,3197,'_demo_importer_plus_sites_imported_post','1'),(910,3197,'_demo_importer_enable_for_batch','1'),(911,3197,'_demo_importer_plus_sites_image_hash','64627932cf7dec4eca42923d78da137509983341'),(912,3197,'_elementor_source_image_hash','64627932cf7dec4eca42923d78da137509983341'),(913,3198,'_wp_attached_file','2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg'),(914,3198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\";s:8:\"filesize\";i:1302;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:{}}}'),(915,3198,'_shortpixel_status','2.6700'),(918,3198,'_demo_importer_plus_sites_imported_post','1'),(919,3198,'_demo_importer_enable_for_batch','1'),(920,3198,'_demo_importer_plus_sites_image_hash','628e5d2b8a0e47cf2c9f453d4cd0c5d3acd6c0f0'),(921,3198,'_elementor_source_image_hash','628e5d2b8a0e47cf2c9f453d4cd0c5d3acd6c0f0'),(922,3199,'_wp_attached_file','2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg'),(923,3199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\";s:8:\"filesize\";i:2246;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:{}}}'),(924,3199,'_shortpixel_status','2.5300'),(927,3199,'_demo_importer_plus_sites_imported_post','1'),(928,3199,'_demo_importer_enable_for_batch','1'),(929,3199,'_demo_importer_plus_sites_image_hash','c06bbce71b1902d908d481314f5c82eb2d122b68'),(930,3199,'_elementor_source_image_hash','c06bbce71b1902d908d481314f5c82eb2d122b68'),(931,3200,'_wp_attached_file','2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg'),(932,3200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\";s:8:\"filesize\";i:1673;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:{}}}'),(933,3200,'_shortpixel_status','2.5800'),(936,3200,'_demo_importer_plus_sites_imported_post','1'),(937,3200,'_demo_importer_enable_for_batch','1'),(938,3200,'_demo_importer_plus_sites_image_hash','96978d745e41eb12ed97a443b9262509ab8363d1'),(939,3200,'_elementor_source_image_hash','96978d745e41eb12ed97a443b9262509ab8363d1'),(940,3201,'_wp_attached_file','2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg'),(941,3201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\";s:8:\"filesize\";i:1869;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:{}}}'),(942,3201,'_shortpixel_status','2.5600'),(945,3201,'_demo_importer_plus_sites_imported_post','1'),(946,3201,'_demo_importer_enable_for_batch','1'),(947,3201,'_demo_importer_plus_sites_image_hash','7833982bfbce0e687dec617d37d02540c389eaf8'),(948,3201,'_elementor_source_image_hash','7833982bfbce0e687dec617d37d02540c389eaf8'),(949,3339,'_wp_attached_file','2021/11/screenshot-1.jpg'),(950,3339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:24:\"2021/11/screenshot-1.jpg\";s:8:\"filesize\";i:33527;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-1-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18793;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8375;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:24:\"screenshot-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40528;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21147;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22335;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15497;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28413;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30140;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35453;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10167;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-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:22338;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21143;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(951,3339,'_shortpixel_status','2.8200'),(954,3339,'_demo_importer_plus_sites_imported_post','1'),(955,3339,'_demo_importer_enable_for_batch','1'),(956,3339,'_demo_importer_plus_sites_image_hash','cfe8e9e1b2a024a6202f224701f6e34bb0972791'),(957,3339,'_elementor_source_image_hash','cfe8e9e1b2a024a6202f224701f6e34bb0972791'),(958,3340,'_wp_attached_file','2021/11/screenshot-2.jpg'),(959,3340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:24:\"2021/11/screenshot-2.jpg\";s:8:\"filesize\";i:19913;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-2-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-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:6752;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:24:\"screenshot-2-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29427;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14643;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-2-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17492;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10247;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-2-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20462;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-2-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21649;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11527;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-2-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25740;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-2-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8050;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-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:16311;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-2-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(960,3340,'_shortpixel_status','2.8400'),(963,3340,'_demo_importer_plus_sites_imported_post','1'),(964,3340,'_demo_importer_enable_for_batch','1'),(965,3340,'_demo_importer_plus_sites_image_hash','51d113f90b703a3c1e94bb91331486d7fe1133e7'),(966,3340,'_elementor_source_image_hash','51d113f90b703a3c1e94bb91331486d7fe1133e7'),(967,3359,'_wp_attached_file','2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1-scaled.jpg'),(968,3359,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1-scaled.jpg\";s:8:\"filesize\";i:1112194;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26045;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10124;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199673;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68244;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33799;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20858;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44345;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47666;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95281;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19728;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61739;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12593;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-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:32971;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:457734;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:758564;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214599;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118540;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1.jpg\";}'),(969,3359,'_shortpixel_status','2.6200'),(972,3359,'_demo_importer_plus_sites_imported_post','1'),(973,3359,'_demo_importer_enable_for_batch','1'),(974,3359,'_demo_importer_plus_sites_image_hash','0e5d990467cbfbc318369cec96acd21e955f08c2'),(975,3359,'_elementor_source_image_hash','0e5d990467cbfbc318369cec96acd21e955f08c2'),(976,3364,'_wp_attached_file','2021/11/eaters-collective-12eHC6FxPyg-unsplash-scaled.jpg'),(977,3364,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:57:\"2021/11/eaters-collective-12eHC6FxPyg-unsplash-scaled.jpg\";s:8:\"filesize\";i:446044;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15819;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"eaters-collective-12eHC6FxPyg-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107483;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7556;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68582;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42168;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20761;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22119;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14936;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28537;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30563;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56779;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13369;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38363;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9170;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21843;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"eaters-collective-12eHC6FxPyg-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202415;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"eaters-collective-12eHC6FxPyg-unsplash-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315748;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"eaters-collective-12eHC6FxPyg-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118016;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68787;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20841;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"eaters-collective-12eHC6FxPyg-unsplash.jpg\";}'),(978,3364,'_shortpixel_status','2.7400'),(981,3364,'_demo_importer_plus_sites_imported_post','1'),(982,3364,'_demo_importer_enable_for_batch','1'),(983,3364,'_demo_importer_plus_sites_image_hash','0e8ceae27d178734a69c4dee1ff851abaf609e87'),(984,3364,'_elementor_source_image_hash','0e8ceae27d178734a69c4dee1ff851abaf609e87'),(985,3462,'_wp_attached_file','2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg'),(986,3462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:45:\"2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg\";s:8:\"filesize\";i:24777;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6479;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15440;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17423;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10950;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18821;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10703;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7621;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16463;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15551;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(987,3462,'_shortpixel_status','2.6600'),(990,3462,'_demo_importer_plus_sites_imported_post','1'),(991,3462,'_demo_importer_enable_for_batch','1'),(992,3462,'_demo_importer_plus_sites_image_hash','fac7ea101ff2f7309413c77433ec17ece726adf9'),(993,3462,'_elementor_source_image_hash','fac7ea101ff2f7309413c77433ec17ece726adf9'),(994,3463,'_wp_attached_file','2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg'),(995,3463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:40:\"2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg\";s:8:\"filesize\";i:31734;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7099;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18684;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21217;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12648;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24153;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12321;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20300;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(996,3463,'_shortpixel_status','2.6400'),(999,3463,'_demo_importer_plus_sites_imported_post','1'),(1000,3463,'_demo_importer_enable_for_batch','1'),(1001,3463,'_demo_importer_plus_sites_image_hash','edcac07111c858b7f08e7966c60d2fee4274a872'),(1002,3463,'_elementor_source_image_hash','edcac07111c858b7f08e7966c60d2fee4274a872'),(1003,3464,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg'),(1004,3464,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:50:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg\";s:8:\"filesize\";i:23830;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6346;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14660;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16475;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10260;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17859;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7448;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15514;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14810;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1005,3464,'_shortpixel_status','2.6600'),(1008,3464,'_demo_importer_plus_sites_imported_post','1'),(1009,3464,'_demo_importer_enable_for_batch','1'),(1010,3464,'_demo_importer_plus_sites_image_hash','96f828f0c8d018905eccf525f7029138aab573bf'),(1011,3464,'_elementor_source_image_hash','96f828f0c8d018905eccf525f7029138aab573bf'),(1012,3704,'_wp_attached_file','2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg'),(1013,3704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:48:\"2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg\";s:8:\"filesize\";i:2638;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:{}}}'),(1014,3704,'_shortpixel_status','2.6500'),(1017,3704,'_demo_importer_plus_sites_imported_post','1'),(1018,3704,'_demo_importer_enable_for_batch','1'),(1019,3704,'_demo_importer_plus_sites_image_hash','cefe043b0836be5c933160d1bd49f43ff08492fe'),(1020,3704,'_elementor_source_image_hash','cefe043b0836be5c933160d1bd49f43ff08492fe'),(1021,3705,'_wp_attached_file','2021/11/552963-PK36W8-345.jpg'),(1022,3705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:29:\"2021/11/552963-PK36W8-345.jpg\";s:8:\"filesize\";i:3269;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:{}}}'),(1023,3705,'_shortpixel_status','2.6000'),(1026,3705,'_demo_importer_plus_sites_imported_post','1'),(1027,3705,'_demo_importer_enable_for_batch','1'),(1028,3705,'_demo_importer_plus_sites_image_hash','9b99d3be5d2c45920f12bbbc03035dca853ff50c'),(1029,3705,'_elementor_source_image_hash','9b99d3be5d2c45920f12bbbc03035dca853ff50c'),(1030,3706,'_wp_attached_file','2021/11/2899356.jpg'),(1031,3706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:19:\"2021/11/2899356.jpg\";s:8:\"filesize\";i:2720;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:{}}}'),(1032,3706,'_shortpixel_status','2.6400'),(1035,3706,'_demo_importer_plus_sites_imported_post','1'),(1036,3706,'_demo_importer_enable_for_batch','1'),(1037,3706,'_demo_importer_plus_sites_image_hash','eda482eff649a04532a0205b95bde1c457049586'),(1038,3706,'_elementor_source_image_hash','eda482eff649a04532a0205b95bde1c457049586'),(1039,3707,'_wp_attached_file','2021/11/alexandra-lammerink-1-1.jpg'),(1040,3707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:35:\"2021/11/alexandra-lammerink-1-1.jpg\";s:8:\"filesize\";i:2800;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:{}}}'),(1041,3707,'_shortpixel_status','2.6500'),(1044,3707,'_demo_importer_plus_sites_imported_post','1'),(1045,3707,'_demo_importer_enable_for_batch','1'),(1046,3707,'_demo_importer_plus_sites_image_hash','1a0bdd787a42b792b9f00191e2a9674f38de701f'),(1047,3707,'_elementor_source_image_hash','1a0bdd787a42b792b9f00191e2a9674f38de701f'),(1048,3708,'_wp_attached_file','2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg'),(1049,3708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:60:\"2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg\";s:8:\"filesize\";i:3187;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:{}}}'),(1050,3708,'_shortpixel_status','2.5900'),(1053,3708,'_demo_importer_plus_sites_imported_post','1'),(1054,3708,'_demo_importer_enable_for_batch','1'),(1055,3708,'_demo_importer_plus_sites_image_hash','2c8956cbabda5d8219363dd8e6e787ad996a09b2'),(1056,3708,'_elementor_source_image_hash','2c8956cbabda5d8219363dd8e6e787ad996a09b2'),(1057,3709,'_wp_attached_file','2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg'),(1058,3709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:57:\"2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg\";s:8:\"filesize\";i:2657;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:{}}}'),(1059,3709,'_shortpixel_status','2.6300'),(1062,3709,'_demo_importer_plus_sites_imported_post','1'),(1063,3709,'_demo_importer_enable_for_batch','1'),(1064,3709,'_demo_importer_plus_sites_image_hash','b6487c7dfd2f6c967c5565bc72bdaaecc56d5d01'),(1065,3709,'_elementor_source_image_hash','b6487c7dfd2f6c967c5565bc72bdaaecc56d5d01'),(1066,3710,'_wp_attached_file','2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg'),(1067,3710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:44:\"2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg\";s:8:\"filesize\";i:2540;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:{}}}'),(1068,3710,'_shortpixel_status','2.6600'),(1071,3710,'_demo_importer_plus_sites_imported_post','1'),(1072,3710,'_demo_importer_enable_for_batch','1'),(1073,3710,'_demo_importer_plus_sites_image_hash','d006d71520cb356b1827dab83a5d563b2392dab7'),(1074,3710,'_elementor_source_image_hash','d006d71520cb356b1827dab83a5d563b2392dab7'),(1075,3711,'_wp_attached_file','2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg'),(1076,3711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:85:\"2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg\";s:8:\"filesize\";i:2780;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:{}}}'),(1077,3711,'_shortpixel_status','2.6500'),(1080,3711,'_demo_importer_plus_sites_imported_post','1'),(1081,3711,'_demo_importer_enable_for_batch','1'),(1082,3711,'_demo_importer_plus_sites_image_hash','90a2746cdae60d0a755f179a96532ff091b746ae'),(1083,3711,'_elementor_source_image_hash','90a2746cdae60d0a755f179a96532ff091b746ae'),(1084,3789,'_wp_attached_file','2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg'),(1085,3789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:52:\"2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg\";s:8:\"filesize\";i:142773;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"emiliano-vittoriosi-OFismyezPnY-unsplash-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10527;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10130;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50274;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60834;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29122;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33154;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20058;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40637;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43204;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79241;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19791;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58614;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12433;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30980;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1536x440.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149424;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1170x550.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163475;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102258;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1086,3789,'_shortpixel_status','2.8200'),(1089,3789,'_demo_importer_plus_sites_imported_post','1'),(1090,3789,'_demo_importer_enable_for_batch','1'),(1091,3789,'_demo_importer_plus_sites_image_hash','dc84ad157f13f290729e1ce73be4bd40c9864db1'),(1092,3789,'_elementor_source_image_hash','dc84ad157f13f290729e1ce73be4bd40c9864db1'),(1093,3878,'_wp_attached_file','2021/11/jason-leung-AUAuEgUxg-5.jpg'),(1094,3878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:35:\"2021/11/jason-leung-AUAuEgUxg-5.jpg\";s:8:\"filesize\";i:71702;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"jason-leung-AUAuEgUxg-5-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5955;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22356;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31320;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14063;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14740;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9660;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20052;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21635;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44889;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9123;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26128;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6179;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14675;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1536x440.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81618;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1170x550.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90970;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55984;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1095,3878,'_shortpixel_status','2.9000'),(1098,3878,'_demo_importer_plus_sites_imported_post','1'),(1099,3878,'_demo_importer_enable_for_batch','1'),(1100,3878,'_demo_importer_plus_sites_image_hash','44bf0c0e2817891928e752eee71f8924aaa85a03'),(1101,3878,'_elementor_source_image_hash','44bf0c0e2817891928e752eee71f8924aaa85a03'),(1102,4079,'_wp_attached_file','2021/11/img.jpg'),(1103,4079,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:951;s:4:\"file\";s:15:\"2021/11/img.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"img-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6159;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:15:\"img-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29179;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"img-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15708;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:15:\"img-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16617;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"img-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11425;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:15:\"img-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20066;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:15:\"img-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21444;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:15:\"img-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38551;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"img-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10659;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:15:\"img-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27226;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"img-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7163;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15889;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"img-735x650.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52688;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:15:\"img-735x520.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:15:\"img-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1104,4079,'_shortpixel_status','2.9100'),(1107,4079,'_demo_importer_plus_sites_imported_post','1'),(1108,4079,'_demo_importer_enable_for_batch','1'),(1109,4079,'_demo_importer_plus_sites_image_hash','11b734bb01c3a040bc5ba5805bc20b4cdd358401'),(1110,4079,'_elementor_source_image_hash','11b734bb01c3a040bc5ba5805bc20b4cdd358401'),(1111,4080,'_wp_attached_file','2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg'),(1112,4080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:951;s:4:\"file\";s:44:\"2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6159;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29179;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15708;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16617;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11425;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20066;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21444;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38551;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10659;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27226;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7163;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15889;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-735x650.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52688;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-735x520.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1113,4080,'_shortpixel_status','2.9100'),(1116,4080,'_demo_importer_plus_sites_imported_post','1'),(1117,4080,'_demo_importer_enable_for_batch','1'),(1118,4080,'_demo_importer_plus_sites_image_hash','d8e08774696c4085b632dc877c20b2721da98ef4'),(1119,4080,'_elementor_source_image_hash','d8e08774696c4085b632dc877c20b2721da98ef4'),(1120,4106,'_wp_attached_file','2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg'),(1121,4106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:816;s:4:\"file\";s:47:\"2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg\";s:8:\"filesize\";i:55099;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18784;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8900;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48628;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22952;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27556;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16307;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31875;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33951;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62133;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17205;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46094;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-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:25711;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-600x650.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74069;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-600x520.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68697;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1122,4106,'_shortpixel_status','2.3600'),(1125,4106,'_demo_importer_plus_sites_imported_post','1'),(1126,4106,'_demo_importer_enable_for_batch','1'),(1127,4106,'_demo_importer_plus_sites_image_hash','f93050af02d5a14b22e86e33c235a5ea47ce6837'),(1128,4106,'_elementor_source_image_hash','f93050af02d5a14b22e86e33c235a5ea47ce6837'),(1129,4209,'_wp_attached_file','2021/11/Logo-5.png'),(1130,4209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2021/11/Logo-5.png\";s:8:\"filesize\";i:2452;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Logo-5-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4347;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:18:\"Logo-5-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4852;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-272x200.png\";s:5:\"width\";i:272;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2512;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:18:\"Logo-5-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3632;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-197x200.png\";s:5:\"width\";i:197;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2215;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:18:\"Logo-5-355x200.png\";s:5:\"width\";i:355;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3389;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:18:\"Logo-5-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3632;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:18:\"Logo-5-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5228;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6663;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:18:\"Logo-5-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5228;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:18:\"Logo-5-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5241;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:18:\"Logo-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2719;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:18:\"Logo-5-360x200.png\";s:5:\"width\";i:360;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3468;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1131,4209,'_shortpixel_status','2.7300'),(1132,4209,'_wxr_import_user_slug','rishidemos'),(1133,4209,'_demo_importer_plus_sites_imported_post','1'),(1134,4209,'_demo_importer_enable_for_batch','1'),(1135,4209,'_demo_importer_plus_sites_image_hash','479c92693f961457fdfbcd685fb6900cb75ee707'),(1136,4209,'_elementor_source_image_hash','479c92693f961457fdfbcd685fb6900cb75ee707'),(1137,4210,'_wp_attached_file','2021/11/Logo-Whhite.png'),(1138,4210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2021/11/Logo-Whhite.png\";s:8:\"filesize\";i:2290;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3138;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4378;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-272x200.png\";s:5:\"width\";i:272;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2028;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3209;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-197x200.png\";s:5:\"width\";i:197;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1698;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-355x200.png\";s:5:\"width\";i:355;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2981;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3209;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4743;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6208;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4743;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4435;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2239;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-360x200.png\";s:5:\"width\";i:360;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3054;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1139,4210,'_shortpixel_status','2.7000'),(1140,4210,'_wxr_import_user_slug','rishidemos'),(1141,4210,'_demo_importer_plus_sites_imported_post','1'),(1142,4210,'_demo_importer_enable_for_batch','1'),(1143,4210,'_demo_importer_plus_sites_image_hash','42c4d5cfbb07115d81ba96b005c9a2fd98d480c6'),(1144,4210,'_elementor_source_image_hash','42c4d5cfbb07115d81ba96b005c9a2fd98d480c6'),(1145,4211,'_elementor_edit_mode','builder'),(1146,4211,'_elementor_template_type','kit'),(1147,4211,'_elementor_version','3.4.7'),(1148,4211,'_wp_page_template','default'),(1149,4211,'_elementor_page_settings','a:14:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:1096:{i:0;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:8;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:9;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:10;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:11;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:12;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:13;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:14;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:15;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:16;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:17;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:18;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:19;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:20;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:21;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:22;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:23;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:25;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:26;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:27;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:28;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:29;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:30;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:31;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:32;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:33;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:34;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:35;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:36;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:37;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:38;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:39;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:40;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:41;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:42;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:43;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:44;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:45;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:46;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:47;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:48;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:49;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:50;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:51;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:52;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:53;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:54;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:55;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:56;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:57;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:58;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:59;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:60;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:61;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:62;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:63;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:64;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:65;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:66;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:67;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:68;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:69;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:70;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:71;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:72;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:73;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:74;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:75;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:76;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:77;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:78;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:79;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:80;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:81;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:82;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:83;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:84;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:85;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:86;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:87;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:88;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:89;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:90;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:91;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:92;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:93;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:94;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:95;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:96;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:97;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:98;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:99;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:100;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:101;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:102;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:103;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:104;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:105;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:106;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:107;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:108;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:109;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:110;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:111;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:112;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:113;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:114;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:115;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:116;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:117;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:118;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:119;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:120;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:121;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:122;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:123;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:124;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:125;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:126;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:127;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:128;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:129;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:130;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:131;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:132;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:133;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:134;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:135;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:136;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:137;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:138;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:139;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:140;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:141;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:142;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:143;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:144;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:145;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:146;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:147;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:148;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:149;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:150;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:151;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:152;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:153;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:154;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:155;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:156;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:157;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:158;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:159;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:160;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:161;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:162;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:163;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:164;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:165;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:166;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:167;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:168;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:169;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:170;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:171;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:172;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:173;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:174;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:175;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:176;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:177;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:178;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:179;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:180;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:181;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:182;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:183;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:184;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:185;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:186;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:187;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:188;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:189;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:190;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:191;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:192;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:193;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:194;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:195;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:196;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:197;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:198;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:199;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:200;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:201;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:202;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:203;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:204;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:205;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:206;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:207;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:208;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:209;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:210;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:211;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:212;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:213;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:214;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:215;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:216;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:217;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:218;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:219;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:220;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:221;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:222;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:223;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:224;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:225;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:226;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:227;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:228;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:229;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:230;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:231;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:232;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:233;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:234;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:235;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:236;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:237;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:238;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:239;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:240;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:241;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:242;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:243;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:244;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:245;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:246;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:247;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:248;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:249;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:250;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:251;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:252;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:253;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:254;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:255;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:256;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:257;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:258;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:259;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:260;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:261;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:262;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:263;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:264;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:265;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:266;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:267;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:268;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:269;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:270;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:271;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:272;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:273;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:274;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:275;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:276;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:277;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:278;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:279;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:280;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:281;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:282;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:283;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:284;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:285;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:286;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:287;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:288;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:289;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:290;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:291;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:292;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:293;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:294;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:295;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:296;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:297;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:298;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:299;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:300;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:301;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:302;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:303;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:304;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:305;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:306;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:307;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:308;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:309;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:310;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:311;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:312;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:313;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:314;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:315;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:316;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:317;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:318;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:319;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:320;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:321;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:322;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:323;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:324;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:325;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:326;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:327;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:328;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:329;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:330;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:331;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:332;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:333;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:334;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:335;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:336;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:337;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:338;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:339;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:340;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:341;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:342;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:343;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:344;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:345;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:346;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:347;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:348;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:349;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:350;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:351;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:352;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:353;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:354;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:355;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:356;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:357;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:358;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:359;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:360;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:361;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:362;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:363;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:364;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:365;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:366;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:367;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:368;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:369;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:370;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:371;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:372;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:373;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:374;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:375;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:376;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:377;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:378;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:379;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:380;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:381;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:382;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:383;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:384;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:385;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:386;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:387;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:388;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:389;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:390;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:391;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:392;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:393;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:394;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:395;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:396;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:397;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:398;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:399;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:400;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:401;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:402;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:403;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:404;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:405;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:406;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:407;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:408;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:409;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:410;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:411;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:412;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:413;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:414;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:415;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:416;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:417;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:418;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:419;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:420;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:421;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:422;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:423;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:424;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:425;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:426;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:427;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:428;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:429;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:430;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:431;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:432;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:433;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:434;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:435;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:436;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:437;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:438;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:439;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:440;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:441;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:442;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:443;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:444;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:445;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:446;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:447;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:448;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:449;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:450;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:451;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:452;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:453;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:454;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:455;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:456;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:457;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:458;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:459;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:460;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:461;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:462;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:463;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:464;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:465;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:466;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:467;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:468;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:469;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:470;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:471;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:472;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:473;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:474;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:475;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:476;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:477;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:478;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:479;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:480;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:481;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:482;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:483;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:484;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:485;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:486;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:487;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:488;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:489;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:490;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:491;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:492;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:493;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:494;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:495;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:496;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:497;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:498;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:499;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:500;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:501;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:502;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:503;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:504;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:505;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:506;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:507;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:508;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:509;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:510;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:511;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:512;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:513;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:514;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:515;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:516;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:517;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:518;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:519;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:520;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:521;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:522;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:523;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:524;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:525;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:526;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:527;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:528;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:529;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:530;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:531;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:532;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:533;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:534;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:535;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:536;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:537;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:538;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:539;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:540;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:541;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:542;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:543;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:544;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:545;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:546;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:547;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:548;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:549;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:550;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:551;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:552;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:553;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:554;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:555;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:556;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:557;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:558;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:559;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:560;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:561;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:562;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:563;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:564;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:565;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:566;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:567;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:568;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:569;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:570;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:571;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:572;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:573;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:574;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:575;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:576;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:577;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:578;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:579;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:580;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:581;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:582;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:583;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:584;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:585;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:586;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:587;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:588;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:589;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:590;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:591;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:592;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:593;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:594;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:595;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:596;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:597;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:598;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:599;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:600;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:601;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:602;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:603;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:604;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:605;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:606;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:607;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:608;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:609;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:610;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:611;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:612;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:613;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:614;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:615;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:616;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:617;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:618;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:619;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:620;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:621;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:622;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:623;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:624;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:625;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:626;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:627;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:628;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:629;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:630;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:631;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:632;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:633;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:634;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:635;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:636;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:637;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:638;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:639;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:640;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:641;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:642;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:643;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:644;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:645;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:646;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:647;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:648;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:649;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:650;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:651;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:652;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:653;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:654;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:655;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:656;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:657;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:658;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:659;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:660;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:661;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:662;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:663;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:664;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:665;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:666;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:667;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:668;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:669;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:670;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:671;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:672;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:673;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:674;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:675;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:676;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:677;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:678;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:679;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:680;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:681;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:682;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:683;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:684;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:685;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:686;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:687;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:688;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:689;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:690;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:691;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:692;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:693;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:694;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:695;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:696;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:697;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:698;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:699;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:700;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:701;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:702;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:703;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:704;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:705;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:706;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:707;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:708;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:709;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:710;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:711;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:712;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:713;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:714;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:715;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:716;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:717;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:718;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:719;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:720;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:721;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:722;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:723;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:724;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:725;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:726;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:727;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:728;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:729;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:730;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:731;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:732;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:733;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:734;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:735;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:736;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:737;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:738;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:739;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:740;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:741;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:742;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:743;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:744;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:745;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:746;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:747;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:748;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:749;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:750;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:751;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:752;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:753;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:754;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:755;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:756;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:757;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:758;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:759;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:760;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:761;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:762;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:763;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:764;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:765;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:766;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:767;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:768;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:769;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:770;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:771;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:772;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:773;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:774;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:775;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:776;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:777;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:778;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:779;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:780;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:781;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:782;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:783;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:784;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:785;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:786;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:787;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:788;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:789;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:790;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:791;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:792;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:793;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:794;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:795;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:796;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:797;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:798;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:799;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:800;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:801;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:802;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:803;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:804;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:805;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:806;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:807;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:808;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:809;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:810;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:811;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:812;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:813;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:814;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:815;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:816;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:817;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:818;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:819;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:820;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:821;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:822;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:823;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:824;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:825;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:826;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:827;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:828;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:829;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:830;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:831;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:832;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:833;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:834;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:835;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:836;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:837;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:838;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:839;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:840;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:841;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:842;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:843;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:844;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:845;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:846;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:847;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:848;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:849;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:850;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:851;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:852;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:853;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:854;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:855;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:856;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:857;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:858;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:859;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:860;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:861;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:862;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:863;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:864;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:865;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:866;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:867;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:868;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:869;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:870;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:871;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:872;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:873;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:874;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:875;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:876;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:877;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:878;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:879;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:880;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:881;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:882;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:883;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:884;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:885;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:886;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:887;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:888;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:889;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:890;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:891;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:892;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:893;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:894;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:895;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:896;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:897;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:898;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:899;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:900;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:901;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:902;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:903;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:904;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:905;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:906;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:907;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:908;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:909;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:910;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:911;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:912;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:913;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:914;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:915;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:916;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:917;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:918;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:919;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:920;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:921;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:922;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:923;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:924;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:925;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:926;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:927;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:928;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:929;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:930;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:931;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:932;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:933;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:934;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:935;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:936;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:937;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:938;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:939;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:940;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:941;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:942;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:943;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:944;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:945;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:946;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:947;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:948;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:949;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:950;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:951;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:952;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:953;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:954;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:955;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:956;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:957;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:958;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:959;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:960;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:961;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:962;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:963;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:964;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:965;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:966;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:967;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:968;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:969;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:970;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:971;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:972;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:973;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:974;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:975;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:976;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:977;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:978;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:979;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:980;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:981;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:982;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:983;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:984;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:985;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:986;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:987;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:988;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:989;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:990;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:991;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:992;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:993;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:994;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:995;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:996;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:997;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:998;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:999;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1000;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1001;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1002;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1003;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1004;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1005;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1006;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1007;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1008;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1009;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1010;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1011;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1012;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1013;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1014;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1015;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1016;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1017;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1018;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1019;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1020;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1021;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1022;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1023;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1024;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1025;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1026;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1027;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1028;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1029;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1030;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1031;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1032;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1033;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1034;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1035;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1036;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1037;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1038;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1039;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1040;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1041;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1042;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1043;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1044;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1045;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1046;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1047;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1048;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1049;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1050;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1051;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1052;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1053;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1054;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1055;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1056;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1057;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1058;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1059;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1060;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1061;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1062;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1063;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1064;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1065;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1066;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1067;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1068;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1069;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1070;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1071;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1072;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1073;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1074;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1075;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1076;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1077;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1078;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1079;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1080;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1081;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1082;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1083;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1084;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1085;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1086;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1087;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1088;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1089;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1090;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1091;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1092;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1093;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1094;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1095;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:17:\"system_typography\";a:4:{i:0;a:7:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:1;a:7:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"Restaurant\";s:16:\"site_description\";s:27:\"Rishi Theme Restaurant Demo\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:12:\"rishi_colors\";a:8:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1190;s:5:\"sizes\";a:0:{}}s:21:\"space_between_widgets\";a:6:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}s:6:\"column\";s:1:\"0\";s:3:\"row\";s:1:\"0\";s:8:\"isLinked\";b:1;}}'),(1150,4211,'_elementor_data','[]'),(1151,4211,'_elementor_page_assets','a:0:{}'),(1152,4211,'_wxr_import_user_slug','rishidemos'),(1153,4211,'_demo_importer_plus_sites_imported_post','1'),(1154,4211,'_demo_importer_enable_for_batch','1'),(1155,85,'_elementor_edit_mode','builder'),(1156,85,'_elementor_template_type','page'),(1157,85,'_elementor_version','3.1.1'),(1158,85,'_elementor_data','[{\"id\":\"35e84f24\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"30\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/bg.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"440\",\"right\":\"0\",\"bottom\":\"334\",\"left\":\"0\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4111a01a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46e8401a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6237c76c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.589,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cf74508\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c77a9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking.\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7869b104\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60a42616\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.368,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58462e99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53b44296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74ee2155\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cdccfae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d27e19f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2d3b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"601894ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d8f985\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53491d00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"730acd3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60ad3a5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/refresh.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38ded7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c8998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"376ac49b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68748f67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23d02368\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30359e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65401419\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16fa5db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c7bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f62124d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout. The point of using Lorem Ipsum is<br\\/> that it has a more-or-less normal distribution.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21d016b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30dfa1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae2ab8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"634ff4dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4395980a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e88ad33\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":840,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64ba6444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39b4d1e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ed019c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"color\":\"#FF785B\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"34e1d75f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1154cece\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60afa9f7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd393a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582185b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/offer.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"701f4cc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10c5543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c30684e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46f1a282\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e93e394\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47dfe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d18c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"779225af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64928bb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c277cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"594e59ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3583e5e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ae891a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1b969a52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1577415f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2eec17f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17f85ac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ad652f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B0D\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66faf2fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbea98f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8114e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15acf915\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2158e17d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6094102\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48896879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"630c0594\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/cayla1-w6ftFbPCs9I-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"321ea834\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fca7e03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mussels Soup\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4f7390\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"20ed5356\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78e72799\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"674d7e91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5358481\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72fb0ca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22e8d992\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/jason-leung-AUAuEgUxg5Q-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7be72f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d482612\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sicilian Meatballs\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"644e73ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6236fed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"587c7156\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"149a8d1a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e47aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15cf8604\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e1a8f14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77426369\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/malin-strandvall-qw1hNqrMNwI-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"719fec36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d3c366\",\"elType\":\"widget\",\"settings\":{\"title\":\"Italian Spaghetti\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22a785d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d7ecade\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"263f0231\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37ee01b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48258776\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68932704\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67935cdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9d18bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d3a85e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seafood Salad\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76286da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74ec7775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65065b56\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a38326e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d56b9c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42909a80\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64d3bf6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c4446f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f6297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63268947\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beef Burger\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9eed853\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"36c6d3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bbb206\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5334d185\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"93c6338\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4df60642\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23c25ff5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"429c7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45bbd884\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roasted Chicken\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"293abf24\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"60bea179\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46ab1c0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"598c1286\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14a7da09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cbf0990\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29df4770\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b756900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/cheesecake-stuffed-strawberries-500x500-1.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a9c0ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8cbefbe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stuffed Strawberry\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a1c391a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"98a3f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39950cfb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66dacb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30807508\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d52a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6677dd11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/jennifer-burk-gwBcamFtPr4-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64869514\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b1a1efe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Fish\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25fdfede\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e4b99f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53e93431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59e5ba6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ef2d98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fd4be3b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98dacc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49bc8330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/amirali-mirhashemian-4gmBIFraSuE-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"687163dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"106a2869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Scrambled Eggs in puff Pastry\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3402a515\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3775d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cdef3de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6132b68d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8577d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"157a515f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"438e0374\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/tim-chow-MhpxHv0FKtE-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b39099f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"343d8340\",\"elType\":\"widget\",\"settings\":{\"title\":\"Soft-Boiled Organic Egg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c89b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"bc84208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c6cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71cd8f61\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52532485\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7279952d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"40\",\"bottom\":\"16\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"248dc79a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3811fec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.67,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fdf184e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a86e13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"430946c2\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26ffa75d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.244,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45ff9ccf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash.png\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e25e7b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19f1746f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48525bc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35a70ec2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1b18383c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"568db89e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e24a3f7\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/testimonial-bg-1.png\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a70920c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"56f1af69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29db8995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcb743\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"633c4042\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39c553b1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63752892\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70b5a576\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bc9cfa5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49d221e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44576a54\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"298db9c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28547994\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3556ae2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"481672ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ea8a358\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69965b54\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27541f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.688,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33bc388b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e8e89c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b6a0016\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"547998bf\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1d6c09dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"706779dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8cb6214\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"337a3f88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5784df49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5e79d043\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.031,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4aaad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b925b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"748781f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65edbefd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1159,85,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:28;s:5:\"align\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:28;s:21:\"typography_typography\";i:28;s:22:\"typography_font_family\";i:28;s:20:\"typography_font_size\";i:28;s:22:\"typography_font_weight\";i:28;s:22:\"typography_line_height\";i:28;s:25:\"typography_letter_spacing\";i:28;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:8:\"_padding\";i:16;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:10;s:17:\"_background_color\";i:10;s:18:\"_background_repeat\";i:10;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:10;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:44;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:44;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:34;s:5:\"align\";i:24;s:21:\"typography_typography\";i:38;s:22:\"typography_font_family\";i:38;s:20:\"typography_font_size\";i:38;s:22:\"typography_font_weight\";i:38;s:22:\"typography_line_height\";i:38;s:25:\"typography_letter_spacing\";i:38;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:17;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}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:2:{s:4:\"text\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:28:\"text_shadow_text_shadow_type\";i:1;}}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:70;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:70;s:21:\"space_between_widgets\";i:42;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:27;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:21;s:16:\"background_image\";i:10;s:19:\"background_position\";i:10;s:15:\"background_xpos\";i:10;s:15:\"background_ypos\";i:10;s:17:\"background_repeat\";i:10;s:16:\"background_color\";i:11;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:1;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:35;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:23;}s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:16;s:13:\"content_width\";i:8;s:6:\"layout\";i:2;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:3;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:10;}s:14:\"section_border\";a:6:{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:\"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:16;s:6:\"margin\";i:13;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:21;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:21;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:3;}}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: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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:5:\"color\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1160,85,'_wxr_import_user_slug','rishidemos'),(1161,85,'_demo_importer_plus_sites_imported_post','1'),(1162,85,'_demo_importer_enable_for_batch','1'),(1163,103,'_elementor_edit_mode','builder'),(1164,103,'_elementor_template_type','page'),(1165,103,'_elementor_version','3.1.1'),(1166,103,'_elementor_data','[{\"id\":\"22ca024a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":95,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/about-bg.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"293\",\"right\":\"0\",\"bottom\":\"183\",\"left\":\"0\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76e18072\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"449921e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"148fdee9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e32f9f1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c5991d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a6b3134\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d719cdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout. The point of using Lorem Ipsum is<br\\/> that it has a more-or-less normal distribution.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2623363f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"540f21d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14931db5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d99f34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"170a89fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50331692\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60eb6c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e8fe554\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4010ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e500a44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30b23e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d373c1e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"68d5953f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":840,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"185421b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15e81889\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"711d4107\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"color\":\"#FF785B\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1baac097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"707e0cea\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a914e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3517c6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.67,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b5bea2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dd2bc6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48e22a9a\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3fd12ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.244,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a8eec4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash.png\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76626220\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1315d68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59d62df3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5833b2d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2282407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ddfc1ba\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68f8f31d\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f7b51d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"641098c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71e90406\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579a1b90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":97,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash-2.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65454a61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1803e3d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e858443\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1cd4004d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1168731b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":98,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/elevate-iv6yNy7oBqQ-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"479c928c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b91d636\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7ddb7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"9a9f833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"422a62c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":99,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"194788e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Miller\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe3d263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ca9e52b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"827ffab\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b938929\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45742ae4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"134d0e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5de7f0e7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":100,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a8f7cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28e65d25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ec49ce5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"62f998dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"187180f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":101,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e237f1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6712e1b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"220bb11c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7e78609\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"295885e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d882311\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c46c5ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8465f0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62333259\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4026eb24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b93072\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a320eec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"266a5758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5aa8fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53db4223\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"463c10b4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a450511\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fbb962\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"422494b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f777b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f61097\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72b1ad9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"68df5ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1f013b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3464d97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.472,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222c7f53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d18061b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"425e2b87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70dedad\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ef3f651\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3182bab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"684b2169\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1781188e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ca77acd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"34f62991\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.463,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65716b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7503198\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a5ec4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32747346\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1167,103,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:15;s:5:\"align\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{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:15;s:25:\"typography_letter_spacing\";i:15;s:11:\"title_color\";i:15;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:21;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:21;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:12;s:10:\"text_color\";i:11;s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:20:\"typography_font_size\";i:18;s:22:\"typography_font_weight\";i:18;s:22:\"typography_line_height\";i:18;s:25:\"typography_letter_spacing\";i:18;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_padding\";i:6;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:27;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:27;s:21:\"space_between_widgets\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:19;s:6:\"margin\";i:7;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:7;s:26:\"box_shadow_box_shadow_type\";i:6;s:21:\"box_shadow_box_shadow\";i:6;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:5;s:13:\"content_width\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{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:4;s:6:\"margin\";i:5;}}}}s:5:\"image\";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_image\";a:3:{s:5:\"image\";i:13;s:10:\"image_size\";i:13;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:11;s:19:\"image_border_radius\";i:11;}}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: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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:5:\"color\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:9;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:9;s:18:\"icon_primary_color\";i:9;s:9:\"icon_size\";i:9;s:12:\"icon_padding\";i:9;s:12:\"icon_spacing\";i:9;s:19:\"image_border_border\";i:9;s:18:\"image_border_width\";i:9;s:18:\"image_border_color\";i:9;s:13:\"border_radius\";i:9;s:20:\"icon_secondary_color\";i:9;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:9;s:19:\"hover_primary_color\";i:9;s:18:\"hover_border_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1168,103,'_wxr_import_user_slug','rishidemos'),(1169,103,'_demo_importer_plus_sites_imported_post','1'),(1170,103,'_demo_importer_enable_for_batch','1'),(1171,120,'_menu_item_type','post_type'),(1172,120,'_menu_item_object_id','106'),(1173,120,'_menu_item_object','page'),(1174,120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1175,120,'_wp_old_date','2021-11-19'),(1176,120,'_wxr_import_user_slug','rishidemos'),(1178,120,'_demo_importer_plus_sites_imported_post','1'),(1179,120,'_demo_importer_enable_for_batch','1'),(1180,121,'_menu_item_type','post_type'),(1181,121,'_menu_item_object_id','115'),(1182,121,'_menu_item_object','page'),(1183,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1184,121,'_wp_old_date','2021-11-19'),(1185,121,'_wxr_import_user_slug','rishidemos'),(1187,121,'_demo_importer_plus_sites_imported_post','1'),(1188,121,'_demo_importer_enable_for_batch','1'),(1189,755,'_menu_item_type','post_type'),(1190,755,'_menu_item_object_id','753'),(1191,755,'_menu_item_object','page'),(1192,755,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1193,755,'_wp_old_date','2021-11-19'),(1194,755,'_wxr_import_user_slug','rishidemos'),(1196,755,'_demo_importer_plus_sites_imported_post','1'),(1197,755,'_demo_importer_enable_for_batch','1'),(1198,4221,'_wp_attached_file','2021/11/Logo-6.png'),(1199,4221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:126;s:4:\"file\";s:18:\"2021/11/Logo-6.png\";s:8:\"filesize\";i:865;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:{}}}'),(1200,4221,'_shortpixel_status','2.7200'),(1201,4221,'_wxr_import_user_slug','rishidemos'),(1202,4221,'_demo_importer_plus_sites_imported_post','1'),(1203,4221,'_demo_importer_enable_for_batch','1'),(1204,4221,'_demo_importer_plus_sites_image_hash','a8db0fbaf269c911e5bbc01ed5d5c42ca7a9a26e'),(1205,4221,'_elementor_source_image_hash','a8db0fbaf269c911e5bbc01ed5d5c42ca7a9a26e'),(1206,4250,'_wp_attached_file','2021/07/alex-munsell-auIbTAcSH-21.jpg'),(1207,4250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2021/07/alex-munsell-auIbTAcSH-21.jpg\";s:8:\"filesize\";i:89555;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51016;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50406;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23783;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16469;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33315;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35465;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64220;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52971;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10535;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142271;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1170x640.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146360;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85323;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1208,4250,'_shortpixel_status','2.9000'),(1211,4250,'_demo_importer_plus_sites_imported_post','1'),(1212,4250,'_demo_importer_enable_for_batch','1'),(1213,4250,'_demo_importer_plus_sites_image_hash','1d651d4f6c7f7141262f5e5199cc81606552d736'),(1214,4250,'_elementor_source_image_hash','1d651d4f6c7f7141262f5e5199cc81606552d736'),(1215,4252,'_wp_attached_file','2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg'),(1216,4252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:48:\"2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg\";s:8:\"filesize\";i:147570;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22672;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"brooke-lark-oaz0raysASk-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99104;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60076;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31832;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31253;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22498;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42548;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45347;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82536;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18785;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54367;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13063;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-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:32385;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"brooke-lark-oaz0raysASk-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:275883;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:49:\"brooke-lark-oaz0raysASk-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160533;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96504;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1217,4252,'_shortpixel_status','2.5900'),(1220,4252,'_demo_importer_plus_sites_imported_post','1'),(1221,4252,'_demo_importer_enable_for_batch','1'),(1222,4252,'_demo_importer_plus_sites_image_hash','e16d6f8495c6cae31e73988d0185a7abff458f07'),(1223,4252,'_elementor_source_image_hash','e16d6f8495c6cae31e73988d0185a7abff458f07'),(1224,4253,'_wp_attached_file','2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg'),(1225,4253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:52:\"2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg\";s:8:\"filesize\";i:94905;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14195;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58483;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35120;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18463;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19042;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13747;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24539;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26128;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47250;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11789;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31754;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7970;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-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:18752;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164476;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94143;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18137;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1226,4253,'_shortpixel_status','2.6200'),(1229,4253,'_demo_importer_plus_sites_imported_post','1'),(1230,4253,'_demo_importer_enable_for_batch','1'),(1231,4253,'_demo_importer_plus_sites_image_hash','3972b496927f44d3e046e9a72ab8e4f091e9634a'),(1232,4253,'_elementor_source_image_hash','3972b496927f44d3e046e9a72ab8e4f091e9634a'),(1233,4255,'_wp_attached_file','2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg'),(1234,4255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:41:\"2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg\";s:8:\"filesize\";i:111850;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17171;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"stil-u2Lp8tXIcjw-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74747;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43690;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20524;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23049;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14127;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28987;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31217;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57885;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14232;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36639;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9729;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-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:22219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"stil-u2Lp8tXIcjw-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214398;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:42:\"stil-u2Lp8tXIcjw-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111925;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72470;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1235,4255,'_shortpixel_status','2.6400'),(1238,4255,'_demo_importer_plus_sites_imported_post','1'),(1239,4255,'_demo_importer_enable_for_batch','1'),(1240,4255,'_demo_importer_plus_sites_image_hash','67300b03ae68e3530d0300e6304aa99110380147'),(1241,4255,'_elementor_source_image_hash','67300b03ae68e3530d0300e6304aa99110380147'),(1242,4314,'_wp_attached_file','2021/11/brooke-cagle-1.jpg'),(1243,4314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:26:\"2021/11/brooke-cagle-1.jpg\";s:8:\"filesize\";i:27581;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6160;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15181;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17371;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10999;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21094;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10205;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7375;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-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:15775;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1244,4314,'_shortpixel_status','2.6800'),(1247,4314,'_demo_importer_plus_sites_imported_post','1'),(1248,4314,'_demo_importer_enable_for_batch','1'),(1249,4314,'_demo_importer_plus_sites_image_hash','64bd72f0c318972df2660421495d0a22e5ccf064'),(1250,4314,'_elementor_source_image_hash','64bd72f0c318972df2660421495d0a22e5ccf064'),(1251,4315,'_wp_attached_file','2021/11/elevate-iv-1.jpg'),(1252,4315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:24:\"2021/11/elevate-iv-1.jpg\";s:8:\"filesize\";i:35795;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18831;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7467;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18506;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20663;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13031;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27199;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11981;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26613;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8909;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"elevate-iv-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:19850;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1253,4315,'_shortpixel_status','2.6400'),(1256,4315,'_demo_importer_plus_sites_imported_post','1'),(1257,4315,'_demo_importer_enable_for_batch','1'),(1258,4315,'_demo_importer_plus_sites_image_hash','add9ff5dbd213efb0818593de92ae0fde6e0d89a'),(1259,4315,'_elementor_source_image_hash','add9ff5dbd213efb0818593de92ae0fde6e0d89a'),(1260,4316,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg'),(1261,4316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg\";s:8:\"filesize\";i:27086;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6536;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14989;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16557;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11242;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20395;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20508;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15739;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1262,4316,'_shortpixel_status','2.6700'),(1265,4316,'_demo_importer_plus_sites_imported_post','1'),(1266,4316,'_demo_importer_enable_for_batch','1'),(1267,4316,'_demo_importer_plus_sites_image_hash','2bbd03cd3808b9c8cbe1bc04765a1c2092d2d868'),(1268,4316,'_elementor_source_image_hash','2bbd03cd3808b9c8cbe1bc04765a1c2092d2d868'),(1269,4317,'_wp_attached_file','2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg'),(1270,4317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:48:\"2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg\";s:8:\"filesize\";i:33437;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8018;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19236;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20329;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14068;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26047;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12616;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25546;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9422;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-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:19967;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18028;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1271,4317,'_shortpixel_status','2.6500'),(1274,4317,'_demo_importer_plus_sites_imported_post','1'),(1275,4317,'_demo_importer_enable_for_batch','1'),(1276,4317,'_demo_importer_plus_sites_image_hash','b52f762ec2231e45063d761b470499068fb2652f'),(1277,4317,'_elementor_source_image_hash','b52f762ec2231e45063d761b470499068fb2652f'),(1278,4318,'_wp_attached_file','2021/11/screenshot-3.jpg'),(1279,4318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:24:\"2021/11/screenshot-3.jpg\";s:8:\"filesize\";i:37369;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-3-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8264;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20626;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14962;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-3-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29043;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13374;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-3-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28902;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9956;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21780;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1280,4318,'_shortpixel_status','2.6400'),(1283,4318,'_demo_importer_plus_sites_imported_post','1'),(1284,4318,'_demo_importer_enable_for_batch','1'),(1285,4318,'_demo_importer_plus_sites_image_hash','1695e3fdb31707b88d0fed44c02bef4eaa575c35'),(1286,4318,'_elementor_source_image_hash','1695e3fdb31707b88d0fed44c02bef4eaa575c35'),(1287,4319,'_wp_attached_file','2021/11/screenshot-4-1.jpg'),(1288,4319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:26:\"2021/11/screenshot-4-1.jpg\";s:8:\"filesize\";i:27444;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6771;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14770;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17408;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10344;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21321;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11025;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21374;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8081;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"screenshot-4-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:16448;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1289,4319,'_shortpixel_status','2.6500'),(1292,4319,'_demo_importer_plus_sites_imported_post','1'),(1293,4319,'_demo_importer_enable_for_batch','1'),(1294,4319,'_demo_importer_plus_sites_image_hash','fe8b668cd279e3952fa7536d7902c3a28cd13af9'),(1295,4319,'_elementor_source_image_hash','fe8b668cd279e3952fa7536d7902c3a28cd13af9'),(1296,4532,'_wp_attached_file','2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg'),(1297,4532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:45:\"2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg\";s:8:\"filesize\";i:89555;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51016;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50406;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23783;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16469;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33315;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35465;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64220;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52971;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10535;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142271;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1170x640.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146360;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85323;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1298,4532,'_shortpixel_status','2.9000'),(1301,4532,'_demo_importer_plus_sites_imported_post','1'),(1302,4532,'_demo_importer_enable_for_batch','1'),(1303,4532,'_demo_importer_plus_sites_image_hash','e03c17a4625d3de5b01d56746180ea820fb0324a'),(1304,4532,'_elementor_source_image_hash','e03c17a4625d3de5b01d56746180ea820fb0324a'),(1305,4695,'_wp_attached_file','2021/11/Path-24974.svg'),(1306,4695,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:340;s:5:\"width\";i:36;s:6:\"height\";i:67;}'),(1309,4695,'_demo_importer_plus_sites_imported_post','1'),(1310,4695,'_demo_importer_enable_for_batch','1'),(1311,4695,'_demo_importer_plus_sites_image_hash','0e7a2c072775c86e75309ea08970e785cee62c62'),(1312,4695,'_elementor_source_image_hash','0e7a2c072775c86e75309ea08970e785cee62c62'),(1313,4697,'_wp_attached_file','2021/11/Path-24974-1.svg'),(1314,4697,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:350;s:5:\"width\";i:36;s:6:\"height\";i:67;}'),(1317,4697,'_demo_importer_plus_sites_imported_post','1'),(1318,4697,'_demo_importer_enable_for_batch','1'),(1319,4697,'_demo_importer_plus_sites_image_hash','72edf298a6c437e26ad362d8a0503358917c5f89'),(1320,4697,'_elementor_source_image_hash','72edf298a6c437e26ad362d8a0503358917c5f89'),(1321,106,'_wp_page_template','elementor_header_footer'),(1322,106,'_rishi_sidebar_layout','no-sidebar'),(1323,106,'_elementor_edit_mode','builder'),(1324,106,'_elementor_template_type','wp-page'),(1325,106,'_elementor_version','3.16.5'),(1326,106,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe-765x650.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"rishi-fullwidth\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1327,106,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"43506fe53ad7cc42290af86e92f64160\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"a0650f5c45d0128c26e37390cbaf353b\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"c913213e210320e2fb6aa55d24a9fb2f\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1328,106,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1329,106,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1330,106,'_wxr_import_user_slug','rishidemos'),(1331,106,'_demo_importer_plus_sites_imported_post','1'),(1332,106,'_demo_importer_enable_for_batch','1'),(1333,115,'_wp_page_template','elementor_header_footer'),(1334,115,'_rishi_sidebar_layout','no-sidebar'),(1335,115,'_elementor_edit_mode','builder'),(1336,115,'_elementor_template_type','wp-page'),(1337,115,'_elementor_version','3.4.8');
INSERT INTO `ajj_postmeta` VALUES (1338,115,'_elementor_data','[{\"id\":\"748b280d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"201\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"},\"_title\":\"Section\"},\"elements\":[{\"id\":\"333f294a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba78c7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"b6ca70a\",\"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\":\"4dd3db3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"efc1e29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Since Established in 2012, we have served more than thousands of customers around the world\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36bb0e6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4663c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"edeb613\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"44e8bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"bcf5dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb493\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"031231b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"985d6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c53120b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3339,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d1e0a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"657b52e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3340,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ded36d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6865f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f370b68\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3462,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-cagle-8jp-6SjVibM-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"797793c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"eec6eec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3464,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61713e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4a04ab2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3463,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/elevate-iv6yNy7oBqQ-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7585b38\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d959c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":true},\"padding_mobile\":{\"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}},\"elements\":[{\"id\":\"4a9b60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A restaurant, or an eatery, is a business that prepares and serves food and drinks to customers. Meals are generally served and eaten on the premises, but many restaurants also offer take-out and food delivery services. Restaurants vary greatly in appearance and offerings, including a wide variety of cuisines and service models ranging from inexpensive fast food restaurants and cafeterias\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"906a070\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi4\"},\"gap_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8a8644a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"003d063\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"09\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a787822\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"27dc8b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.914,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"fac74af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2903ffe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f2e8d1\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ee2ee53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"751e758\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1218351\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"980edff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d1a640b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743fda7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ea6a7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"f1754ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ea9f964\",\"elType\":\"section\",\"settings\":{\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"209d30a\",\"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\":\"3ae1948\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"918afad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8612425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f832a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86789c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"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\":\"030\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba815a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"a213613\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4316,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6527eef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f7f4606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"414b2da\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23b2372\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"23f6588\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4315,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/elevate-iv-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cc316f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dae768\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"d094436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7ef9b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"0c89f90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4317,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f781e50\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Miller\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce1f666\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"3cce460\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2ac41c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0ca1b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"743b224\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4318,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-3.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e4bbdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5335df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"27f5ad5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"9df3d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"71b6239\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4314,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-cagle-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a9ccc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39aa13c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"1e4f5b1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ba839c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"b8fcc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4319,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99a0a33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e726e58\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"d834bd4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f0a926\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"384cbd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"37ed3e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25ab2a5\",\"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\":\"f9bbc3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9592e29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa922d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"c515e7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"75bb6e3\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"a3ec7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88b1f2a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"19aeedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce3202b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a895870\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"ce4deb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed66af1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac054f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f5f3a76\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f67fe15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b214a9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\",\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8bb3286\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c107520\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"be1339e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"03fed6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db5876c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73c4935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa309c\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ebb2ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9610ff6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eb763c2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d933d34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c5bbafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"452644b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false}},\"elements\":[{\"id\":\"d72c4ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b293924\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8fa1add\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db1dcdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79e4152\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0b75bc8\",\"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\":\"81bafde\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"9166b03\",\"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\":\"3b30ac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b3a104\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f48da5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1339,115,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"44b7710c56bf0dfc38f79940d8d6974b\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"9d7cd2e032979e3593df99ecb08d9d2c\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"e576f08792b602f8782909c32d7c60fe\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1340,115,'_elementor_page_assets','a:1:{s:6:\"styles\";a:15:{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\";}}'),(1341,115,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:17;s:5:\"align\";i:14;s:11:\"header_size\";i:12;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:16;s:22:\"typography_line_height\";i:12;s:27:\"typography_font_size_mobile\";i:13;s:29:\"typography_line_height_mobile\";i:14;s:32:\"typography_letter_spacing_mobile\";i:12;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:13;s:8:\"_padding\";i:3;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:23;s:17:\"column_gap_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:16;s:21:\"typography_typography\";i:23;s:20:\"typography_font_size\";i:12;s:27:\"typography_font_size_mobile\";i:15;s:22:\"typography_line_height\";i:22;s:29:\"typography_line_height_mobile\";i:6;s:32:\"typography_letter_spacing_mobile\";i:10;s:12:\"align_mobile\";i:3;s:22:\"typography_font_weight\";i:6;s:10:\"text_color\";i:2;s:27:\"typography_font_size_tablet\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:15;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:5;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:7;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:33;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:33;s:21:\"space_between_widgets\";i:18;s:5:\"align\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:21;s:7:\"padding\";i:29;s:14:\"padding_mobile\";i:20;s:13:\"margin_mobile\";i:15;s:14:\"padding_tablet\";i:9;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:21:\"box_shadow_box_shadow\";i:7;s:13:\"border_radius\";i:7;s:26:\"box_shadow_box_shadow_type\";i:6;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;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:7:\"section\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:13:\"content_width\";i:9;s:15:\"stretch_section\";i:5;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:13;s:7:\"padding\";i:14;s:14:\"padding_mobile\";i:9;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:10;s:14:\"padding_tablet\";i:4;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:2;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;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:14;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:14;s:10:\"image_size\";i:14;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:11;s:19:\"image_border_radius\";i:11;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:9;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:9;s:18:\"icon_primary_color\";i:9;s:9:\"icon_size\";i:9;s:12:\"icon_padding\";i:9;s:12:\"icon_spacing\";i:9;s:19:\"image_border_border\";i:9;s:18:\"image_border_width\";i:9;s:18:\"image_border_color\";i:9;s:13:\"border_radius\";i:9;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:9;s:19:\"hover_primary_color\";i:9;s:18:\"hover_border_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:9;s:14:\"_margin_mobile\";i:8;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";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:2:{s:4:\"text\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}}'),(1342,115,'_wxr_import_user_slug','rishidemos'),(1343,115,'_demo_importer_plus_sites_imported_post','1'),(1344,115,'_demo_importer_enable_for_batch','1'),(1345,749,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"31542678e7c0d3158c53b44e9a8ce7bd\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"77e91a1c25402898442211bd4a09786a\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"c34d092383ffe11b771da82b7bbe92ec\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1346,749,'_elementor_edit_mode','builder'),(1347,749,'_elementor_template_type','wp-page'),(1348,749,'_elementor_version','3.4.8'),(1349,749,'_wp_page_template','elementor_header_footer'),(1350,749,'_elementor_data','[{\"id\":\"d810082\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"16162f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0200\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0aeb4a3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"8687fd4\",\"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\":\"76ab1bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b11d8d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here are some of our delicious and most loved items by our customers all over the world.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"020f69f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cd1a16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"9bb1812\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2862367\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6d059fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"dfc2416\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a208e22\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"ee2a872\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5d727f\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"139ce8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"74479d3\",\"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\":\"c519953\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/nikldn-HzVHlwvQlyw-unsplash.jpg\",\"id\":829,\"alt\":\"\",\"source\":\"library\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e75bc1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32e34e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"393cc8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b696637\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e94e46c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"5796501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a9da1\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a5d9848\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1643e80\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ce13a7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg\",\"id\":3789,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000066\",\"background_overlay_opacity\":{\"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}},\"elements\":[{\"id\":\"50e3c42\",\"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\":\"963d20c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0130\",\"right\":\"0\",\"bottom\":\"0130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e294a9d\",\"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\":\"e79ffb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natural ingredients and testy food\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d56e354\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15ce12a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4ff0ca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a237a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"c6ff956\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"974ab1e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5977701\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"1e49f9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"672e7c4\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"d8792d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4b2ceb\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7fe9ac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg-5.jpg\",\"id\":3878,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000066\",\"background_overlay_opacity\":{\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"56c6aa1\",\"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\":\"c33840c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0130\",\"right\":\"0\",\"bottom\":\"0130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ddd91f\",\"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\":\"9aa2b26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy in good tast and live life\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07894be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec44bee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a Table\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1eeef6f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9fdbfe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"0a07731\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe5a72d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"01c7cfe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"addf06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ab15f\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"6a001d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f4aa5\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"960da2b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"015\",\"bottom\":\"70\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"11108dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4671bb8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"035\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"da86511\",\"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\":\"af22006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b022b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ab0f6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"299e126\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a003697\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"b0f9647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf8152e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7944728\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78a0917\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dc9545\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d71d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0045a82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d9c469a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"b02c0cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2101489\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"700e5f6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ba41da5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"af9a0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17b5620\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"523009d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291b8cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"071d54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54ebc4f\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49151e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e6490a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a53321\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67dbb44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8f91adc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"827410d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"aac3294\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5a79dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8f5b57c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19f5b0a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c8be7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d33011e\",\"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\":\"7e42fef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bdfb5\",\"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\":\"45d6807\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809bf38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"770e616\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"035\",\"bottom\":\"17\",\"left\":\"035\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1351,749,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1352,749,'_elementor_controls_usage','a:12:{s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:12;s:5:\"align\";i:10;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:5;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_mobile\";i:4;s:29:\"typography_line_height_mobile\";i:3;s:32:\"typography_letter_spacing_mobile\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:1:{s:13:\"_border_width\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:14;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:14;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:14;s:20:\"typography_font_size\";i:13;s:27:\"typography_font_size_mobile\";i:11;s:22:\"typography_line_height\";i:11;s:29:\"typography_line_height_mobile\";i:2;s:10:\"text_color\";i:2;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:7;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:6;s:14:\"_margin_mobile\";i:3;s:15:\"_padding_mobile\";i:2;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:30;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:30;s:21:\"space_between_widgets\";i:11;s:5:\"align\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:20;s:7:\"padding\";i:25;s:14:\"padding_mobile\";i:9;s:13:\"margin_tablet\";i:12;s:13:\"margin_mobile\";i:8;s:14:\"padding_tablet\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";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:4:{s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:8;s:15:\"stretch_section\";i:7;s:6:\"layout\";i:4;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:17;s:7:\"padding\";i:19;s:14:\"padding_mobile\";i:10;s:13:\"margin_tablet\";i:8;s:13:\"margin_mobile\";i:8;s:14:\"padding_tablet\";i:10;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:15:\"background_size\";i:4;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:4;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:3;}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:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:4;s:5:\"align\";i:4;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:6:\"weight\";i:6;s:5:\"color\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:8;s:34:\"bpmcgs_price_title_price_connector\";i:8;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:8;s:28:\"bpmsmis_items_spacing_mobile\";i:8;}s:34:\"meafe_price_menu_style_title_style\";a:4:{s:19:\"bpmsts_title_margin\";i:8;s:34:\"bpmsts_title_typography_typography\";i:8;s:33:\"bpmsts_title_typography_font_size\";i:8;s:35:\"bpmsts_title_typography_font_weight\";i:8;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:8;s:33:\"bpmsps_price_typography_font_size\";i:8;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:8;s:39:\"bpmsds_description_typography_font_size\";i:8;s:26:\"bpmsds_description_spacing\";i:8;s:24:\"bpmsds_description_color\";i:8;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:8;s:34:\"bpmsis_image_size_custom_dimension\";i:8;s:18:\"bpmsis_image_width\";i:8;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:8;s:28:\"bpmstpcs_items_divider_color\";i:8;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";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:2:{s:4:\"text\";i:4;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;s:15:\"hover_animation\";i:4;s:27:\"typography_font_size_mobile\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}}'),(1353,749,'_wxr_import_user_slug','rishidemos'),(1354,749,'_demo_importer_plus_sites_imported_post','1'),(1355,749,'_demo_importer_enable_for_batch','1'),(1356,751,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"315e3cfbd28887459a6ada72ec32f2b3\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"6798652d97129f96d059eb8a1e1ca5fc\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"4d1b5968d7bfa80eb48f38613485cb16\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1357,751,'_elementor_edit_mode','builder'),(1358,751,'_elementor_template_type','wp-page'),(1359,751,'_elementor_version','3.4.8'),(1360,751,'_wp_page_template','elementor_header_footer'),(1361,751,'_elementor_data','[{\"id\":\"308686d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"201\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"a329f47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"037b039\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"605b80c\",\"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\":\"b00e3da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"829dc0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Words of praise from our customers who have loved our menus.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ad88cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"154\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0105\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7b264e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"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},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"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}},\"elements\":[{\"id\":\"27e3973\",\"elType\":\"section\",\"settings\":{\"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},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6995bdf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"57d4243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3709,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-88,\"unit\":\"px\"},\"align\":\"center\",\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-52,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"555f10d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9803853\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10b57fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05cbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e7143be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"94ad4ee\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8d9153f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"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\":\"030\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fa0d2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3707,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alexandra-lammerink-1-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y\":{\"size\":-134,\"unit\":\"px\"},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-47,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ac68b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0060398\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12bc277\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9372b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea66a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a89dd92\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"a78df8e\",\"elType\":\"section\",\"settings\":{\"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\":\"6fcf4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3710,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/michael-dam-mEZ3PoFGs_k-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ebde43d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b95171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e743640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de8d1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"65af30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"85c5020\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"514f551\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd7333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3704,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/spencer-russell-C7FB7H-sXJs-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-53,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c30fc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"234c908\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cbe96c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Watson\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b3e3c9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4b4400\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f3b331\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"1e5ddda\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68be569\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"bca6cd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3708,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba48f4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"689fd8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45ec452\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lisa Stoner\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de9537e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"655cf5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"d5504ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5db775d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc48e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3705,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/552963-PK36W8-345.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24fe136\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bea670\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e474e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Linda Wiver\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82dc730\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5a582\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"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\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ef961d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"469f94a\",\"elType\":\"section\",\"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\":\"dc3093c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec2bc6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3706,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/2899356.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8a6e877\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20ac028\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fc9d0ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe8f2c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f87ce1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"9dac633\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0f8ed0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"7808d1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3711,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44531c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1289de5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d580ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Samantha Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fee2367\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1570221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"015\",\"bottom\":\"60\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdd7427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6723877\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"035\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b8e6ce2\",\"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\":\"19064f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab66781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea014\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d02686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8be50a9\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f9d4af4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac53535\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"82f7709\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de7011e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0906ed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe95089\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1e3d17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d86824\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"9173a49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d6669e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d703b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\",\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f596af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a29b758\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"724f1ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"e341f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e1a324e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9180b32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69f7e03\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65d3f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad3f8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d7de5db\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6377ffb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95fe064\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"19c35fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a47b60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da98ae9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b03173c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f3fb413\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"931e6df\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6feb78c\",\"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\":\"370d1b9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b48df8\",\"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\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff94eca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c856eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4132fb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"035\",\"bottom\":\"17\",\"left\":\"035\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1362,751,'_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\";}}'),(1363,751,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:30;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:30;s:5:\"align\";i:28;s:11:\"header_size\";i:28;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:21:\"typography_typography\";i:29;s:22:\"typography_line_height\";i:18;s:27:\"typography_font_size_mobile\";i:28;s:29:\"typography_line_height_mobile\";i:19;s:32:\"typography_letter_spacing_mobile\";i:19;s:22:\"typography_font_family\";i:8;s:22:\"typography_font_weight\";i:8;s:25:\"typography_letter_spacing\";i:16;s:20:\"typography_font_size\";i:16;s:11:\"title_color\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:28;s:14:\"_margin_mobile\";i:24;s:15:\"_padding_mobile\";i:18;s:15:\"_padding_tablet\";i:8;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:20;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:20;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:5:\"align\";i:13;s:21:\"typography_typography\";i:20;s:20:\"typography_font_size\";i:11;s:27:\"typography_font_size_mobile\";i:19;s:22:\"typography_line_height\";i:19;s:29:\"typography_line_height_mobile\";i:10;s:10:\"text_color\";i:2;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:7;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:11;s:15:\"_padding_mobile\";i:10;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;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:29;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:16;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:14;s:7:\"padding\";i:19;s:14:\"padding_mobile\";i:21;s:13:\"margin_mobile\";i:16;s:14:\"padding_tablet\";i:19;s:13:\"margin_tablet\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:21:\"box_shadow_box_shadow\";i:16;s:26:\"box_shadow_box_shadow_type\";i:8;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;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:7:\"section\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:5;s:15:\"stretch_section\";i:3;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:5;s:7:\"padding\";i:10;s:14:\"padding_mobile\";i:9;s:13:\"margin_mobile\";i:9;s:13:\"margin_tablet\";i:6;s:14:\"padding_tablet\";i:7;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:2;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";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:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:9;s:5:\"align\";i:8;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:9:{s:9:\"_position\";i:9;s:9:\"_offset_x\";i:8;s:9:\"_offset_y\";i:9;s:16:\"_offset_x_tablet\";i:8;s:16:\"_offset_y_tablet\";i:8;s:16:\"_offset_y_mobile\";i:8;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";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:\"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:1:{s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";i:2;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}}'),(1364,751,'_wxr_import_user_slug','rishidemos'),(1365,751,'_demo_importer_plus_sites_imported_post','1'),(1366,751,'_demo_importer_enable_for_batch','1'),(1367,753,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"bc39143c74a11f34d8d90d1d69bd1181\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"acb8d68cb0baa58f83ee90a5fa073494\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"e7f538a50e1d3f694a28da1d03cea4a0\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1368,753,'_elementor_edit_mode','builder'),(1369,753,'_elementor_template_type','wp-page'),(1370,753,'_elementor_version','3.4.8'),(1371,753,'_wp_page_template','elementor_header_footer'),(1372,753,'_elementor_data','[{\"id\":\"25e9a1d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"77f9113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0200\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d30d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"2e1d353\",\"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\":\"4368115\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2024cc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Feel free to send us a message if you have any questions.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d9181e1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"48d4750\",\"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\":\"508c957\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"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\":\"09945c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fd1ceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00175b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3090209\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0f5a311\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"99020c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39142c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be680e2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cea5284\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e404557\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a664dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":44,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"040\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"020\",\"bottom\":\"020\",\"left\":\"020\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"30\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d91c13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Direction\",\"header_size\":\"h3\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f28566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"85 Bay Meadowns Drive Woodstock, GA 300188 United States\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"045\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0ad15a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View On Map\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1be6fd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e32dc47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84b4f70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0be2c6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c931e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4dd6b02\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e7302a\",\"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\":\"9be5eb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":\"43da678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dccbf6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/taylor-kiser-POFG828-GQc-unsplash-1.jpg\",\"id\":4106,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3a4cddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"030\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"040\",\"bottom\":\"040\",\"left\":\"040\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"020\",\"bottom\":\"020\",\"left\":\"020\",\"isLinked\":true}},\"elements\":[{\"id\":\"5986bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s Have a Talk\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca9f411\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking.\",\"align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77421d5\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"4081\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_typography_typography\":\"custom\",\"bcsffs_cf7_field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bcsffs_cf7_field_placeholder_color\":\"#3E3E3E\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"bcsffs_cf7_field_border_color\":\"#0000001A\"},\"elements\":[],\"widgetType\":\"meafe-cf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54be2f4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"uc_background_type\":\"__none__\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"19e475d\",\"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\":\"c761f91\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false},\"uc_background_type\":\"__none__\"},\"elements\":[{\"id\":\"fef82a4\",\"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\":\"d9a12fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c31ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"99087c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1373,753,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1374,753,'_elementor_controls_usage','a:9:{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:4:{s:5:\"title\";i:6;s:5:\"align\";i:6;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:3;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:29:\"typography_line_height_mobile\";i:2;s:32:\"typography_letter_spacing_mobile\";i:2;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_tablet\";i:2;s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:12;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:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:9;s:22:\"typography_line_height\";i:9;s:29:\"typography_line_height_mobile\";i:1;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}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:4:{s:12:\"_inline_size\";i:11;s:21:\"space_between_widgets\";i:1;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:11;s:7:\"padding\";i:11;s:14:\"padding_mobile\";i:3;s:13:\"margin_tablet\";i:2;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:5;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;}}}}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:3:{s:13:\"content_width\";i:2;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:8;s:14:\"padding_mobile\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:1:{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: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:1:{s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";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:2:{s:4:\"text\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:1;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:1:{s:32:\"meafe_cf7_style_form_field_style\";a:7:{s:22:\"bcsffs_cf7_field_width\";i:1;s:38:\"bcsffs_cf7_field_typography_typography\";i:1;s:37:\"bcsffs_cf7_field_typography_font_size\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;s:29:\"bcsffs_cf7_field_border_color\";i:1;}}}}}'),(1375,753,'_wxr_import_user_slug','rishidemos'),(1376,753,'_demo_importer_plus_sites_imported_post','1'),(1377,753,'_demo_importer_enable_for_batch','1'),(1378,756,'_menu_item_type','post_type'),(1379,756,'_menu_item_object_id','751'),(1380,756,'_menu_item_object','page'),(1381,756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1382,756,'_wp_old_date','2021-11-19'),(1383,756,'_wxr_import_user_slug','rishidemos'),(1384,756,'_demo_importer_plus_sites_imported_post','1'),(1385,756,'_demo_importer_enable_for_batch','1'),(1386,757,'_menu_item_type','post_type'),(1387,757,'_menu_item_object_id','749'),(1388,757,'_menu_item_object','page'),(1389,757,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1390,757,'_wp_old_date','2021-11-19'),(1391,757,'_wxr_import_user_slug','rishidemos'),(1392,757,'_demo_importer_plus_sites_imported_post','1'),(1393,757,'_demo_importer_enable_for_batch','1'),(1394,1561,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"82a3ead3cf865c2e15b28afcb4c5bf57\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"bc13053d70938542c932ff7990dd6c1f\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"8c3cfda1cac5e2d53fd09675bed65268\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1395,1561,'_wxr_import_user_slug','rishidemos'),(1396,1561,'_demo_importer_plus_sites_imported_post','1'),(1397,1561,'_demo_importer_enable_for_batch','1'),(1407,1794,'_rishi_sidebar_layout','default-sidebar'),(1408,1794,'_thumbnail_id','4255'),(1409,1794,'_wp_page_template','default'),(1410,1794,'_wp_old_slug','get-ready-for-the-next-era-of-business'),(1411,1794,'_rishi_post_view_count','8'),(1412,1794,'_wxr_import_user_slug','rishidemos'),(1413,1794,'_demo_importer_plus_sites_imported_post','1'),(1414,1794,'_demo_importer_enable_for_batch','1'),(1417,1795,'_rishi_sidebar_layout','default-sidebar'),(1418,1795,'_thumbnail_id','4253'),(1419,1795,'_wp_page_template','default'),(1420,1795,'_wp_old_slug','what-customer-truly-value'),(1421,1795,'_rishi_post_view_count','10'),(1422,1795,'_wxr_import_user_slug','rishidemos'),(1423,1795,'_demo_importer_plus_sites_imported_post','1'),(1424,1795,'_demo_importer_enable_for_batch','1'),(1427,3041,'fakerpress_flag','1'),(1428,3041,'_wp_page_template','default'),(1429,3041,'_rishi_sidebar_layout','default-sidebar'),(1430,3041,'_thumbnail_id','3080'),(1431,3041,'_wp_old_slug','take-action-for-the-best-strategy-benefits'),(1432,3041,'_rishi_post_view_count','13'),(1433,3041,'_wxr_import_user_slug','rishidemos'),(1434,3041,'_demo_importer_plus_sites_imported_post','1'),(1435,3041,'_demo_importer_enable_for_batch','1'),(1438,3046,'fakerpress_flag','1'),(1439,3046,'_wp_page_template','default'),(1440,3046,'_rishi_sidebar_layout','default-sidebar'),(1441,3046,'_thumbnail_id','3081'),(1442,3046,'_wp_old_slug','how-bidens-victory-will-affect-the-trade-globally'),(1443,3046,'_rishi_post_view_count','15'),(1444,3046,'_wxr_import_user_slug','rishidemos'),(1445,3046,'_demo_importer_plus_sites_imported_post','1'),(1446,3046,'_demo_importer_enable_for_batch','1'),(1449,3049,'fakerpress_flag','1'),(1450,3049,'_thumbnail_id','4252'),(1451,3049,'_wp_page_template','default'),(1452,3049,'_rishi_sidebar_layout','default-sidebar'),(1453,3049,'_wp_old_slug','international-network-to-provide-assistance'),(1454,3049,'rt_customizer_post_meta_options','a:23:{s:23:\"breadcrumbs_single_post\";s:2:\"no\";s:32:\"ac6f4437b761a65e81ec4945d22afcde\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"9b7b8cd0b0738b9502e0ee67904188f2\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_post_streched_ed\";s:2:\"no\";s:32:\"40cbf79a5a19b8c39fce23bbf29da2ff\";s:0:\"\";s:23:\"vertical_spacing_source\";s:7:\"inherit\";s:20:\"content_area_spacing\";s:4:\"both\";s:30:\"single_post_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}s:32:\"single_post_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_post_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_post_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"2004718aac23461497b103a68313a607\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:17:\"disable_post_tags\";s:2:\"no\";s:18:\"disable_author_box\";s:2:\"no\";s:24:\"disable_posts_navigation\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:21:\"disable_related_posts\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1455,3049,'_rishi_post_view_count','9'),(1456,3049,'_wxr_import_user_slug','rishidemos'),(1457,3049,'_demo_importer_plus_sites_imported_post','1'),(1458,3049,'_demo_importer_enable_for_batch','1'),(1461,3059,'_thumbnail_id','3087'),(1462,3059,'_rishi_sidebar_layout','default-sidebar'),(1463,3059,'rt_customizer_post_meta_options','a:35:{s:23:\"breadcrumbs_single_post\";s:2:\"no\";s:32:\"c3e6956d1ccd71bf68b6c4605ecd497d\";s:0:\"\";s:19:\"page_structure_type\";s:15:\"default-sidebar\";s:32:\"1ec0415047854fafdf37351f756b2a5f\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_post_streched_ed\";s:2:\"no\";s:32:\"7e2d0e463d958e1955a7fa7580abda8c\";s:0:\"\";s:23:\"vertical_spacing_source\";s:7:\"inherit\";s:20:\"content_area_spacing\";s:4:\"both\";s:30:\"single_post_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}s:32:\"single_post_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_post_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_post_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"5de8b70ca9ab74a5ec2edfb2cc837924\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:17:\"disable_post_tags\";s:2:\"no\";s:18:\"disable_author_box\";s:2:\"no\";s:24:\"disable_posts_navigation\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:21:\"disable_related_posts\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";s:32:\"ffea88e7de3d048c78b6cc36f0616831\";s:0:\"\";s:32:\"9c88b8310aaee1b20a7bed7583dce14e\";s:0:\"\";s:32:\"90e1f208bd3a4c3318f0998189742d82\";s:0:\"\";s:32:\"a6b1bf521ddad8095d559ca7cddd1345\";s:0:\"\";s:32:\"384bb551a561ba4139133dab8a765ce5\";s:0:\"\";s:32:\"b49c23fb4caaace8dc918d53cf14b822\";s:0:\"\";s:32:\"08f5003cf9188750476731cf32f048dd\";s:0:\"\";s:32:\"87a4bf6e8cbaea6017b5018c129d70d9\";s:0:\"\";s:32:\"67943ce15721eb52b22659bc8c32ffb4\";s:0:\"\";s:32:\"83bc7a8f20496fa52b001dbd94694823\";s:0:\"\";s:32:\"0f650e44108f473790c187046df1df9f\";s:0:\"\";s:32:\"bc7af0f0dbd460f0d15dbdf53c332c43\";s:0:\"\";}'),(1464,3059,'_wp_page_template','default'),(1465,3059,'_wp_old_slug','transforming-into-the-digital-enterprize'),(1466,3059,'_rishi_post_view_count','14'),(1467,3059,'_wxr_import_user_slug','rishidemos'),(1468,3059,'_demo_importer_plus_sites_imported_post','1'),(1469,3059,'_demo_importer_enable_for_batch','1'),(1470,3129,'_menu_item_type','post_type'),(1471,3129,'_menu_item_object_id','106'),(1472,3129,'_menu_item_object','page'),(1473,3129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1474,3129,'_wxr_import_user_slug','rishidemos'),(1475,3129,'_demo_importer_plus_sites_imported_post','1'),(1476,3129,'_demo_importer_enable_for_batch','1'),(1484,3131,'_menu_item_type','post_type'),(1485,3131,'_menu_item_object_id','753'),(1486,3131,'_menu_item_object','page'),(1487,3131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1488,3131,'_wxr_import_user_slug','rishidemos'),(1489,3131,'_demo_importer_plus_sites_imported_post','1'),(1490,3131,'_demo_importer_enable_for_batch','1'),(1491,3132,'_menu_item_type','post_type'),(1492,3132,'_menu_item_object_id','749'),(1493,3132,'_menu_item_object','page'),(1494,3132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1495,3132,'_wxr_import_user_slug','rishidemos'),(1496,3132,'_demo_importer_plus_sites_imported_post','1'),(1497,3132,'_demo_importer_enable_for_batch','1'),(1498,3134,'_menu_item_type','post_type'),(1499,3134,'_menu_item_object_id','751'),(1500,3134,'_menu_item_object','page'),(1501,3134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1502,3134,'_wxr_import_user_slug','rishidemos'),(1503,3134,'_demo_importer_plus_sites_imported_post','1'),(1504,3134,'_demo_importer_enable_for_batch','1'),(1505,1172,'_form','[text* Your-full-name placeholder \"Full Name\"]\n\n[date* Date placeholder \"03/08/2020\"]\n\n[number* NumberofSeats placeholder \"Number of Seats\"]\n\n[number* your-number placeholder \"Phone Number\"]\n\n[email* your-email placeholder \"Email Address\"]\n\n[submit \"Make a Reservation\"]'),(1506,1172,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1507,1172,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1508,1172,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1509,1172,'_locale','en_US'),(1510,1172,'_wxr_import_user_slug','rishidemos'),(1511,1172,'_demo_importer_plus_sites_imported_post','1'),(1512,1172,'_demo_importer_enable_for_batch','1'),(1513,4081,'_form','[text* Your-full-name placeholder \"Full Name\"]\n\n[number* your-number placeholder \"Phone Number\"]\n\n[email* your-email-address placeholder \"Your Email Address\"]\n\n[textarea* your-message placeholder \"Message\"]\n\n[submit \"Send Message\"]'),(1514,4081,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1515,4081,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1516,4081,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1517,4081,'_locale','en_US'),(1518,4081,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(1519,4081,'_wxr_import_user_slug','rishidemos'),(1520,4081,'_demo_importer_plus_sites_imported_post','1'),(1521,4081,'_demo_importer_enable_for_batch','1'),(1528,1561,'_edit_last','2'),(1529,1561,'_wp_page_template','default'),(1530,1561,'_edit_lock','1694094483:2'),(1534,115,'_edit_lock','1694094487:2'),(1535,115,'_last_editor_used_jetpack','block-editor'),(1536,4701,'_elementor_edit_mode','builder'),(1537,4701,'_elementor_template_type','kit'),(1538,4701,'_elementor_version','3.4.7'),(1539,4701,'_wp_page_template','default'),(1540,4701,'_elementor_page_settings','a:14:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:904:{i:0;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:8;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:9;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:10;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:11;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:12;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:13;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:14;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:15;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:16;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:17;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:18;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:19;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:20;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:21;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:22;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:23;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:25;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:26;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:27;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:28;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:29;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:30;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:31;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:32;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:33;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:34;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:35;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:36;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:37;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:38;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:39;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:40;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:41;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:42;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:43;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:44;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:45;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:46;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:47;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:48;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:49;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:50;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:51;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:52;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:53;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:54;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:55;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:56;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:57;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:58;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:59;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:60;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:61;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:62;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:63;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:64;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:65;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:66;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:67;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:68;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:69;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:70;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:71;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:72;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:73;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:74;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:75;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:76;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:77;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:78;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:79;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:80;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:81;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:82;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:83;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:84;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:85;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:86;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:87;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:88;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:89;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:90;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:91;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:92;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:93;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:94;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:95;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:96;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:97;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:98;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:99;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:100;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:101;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:102;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:103;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:104;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:105;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:106;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:107;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:108;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:109;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:110;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:111;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:112;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:113;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:114;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:115;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:116;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:117;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:118;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:119;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:120;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:121;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:122;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:123;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:124;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:125;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:126;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:127;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:128;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:129;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:130;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:131;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:132;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:133;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:134;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:135;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:136;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:137;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:138;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:139;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:140;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:141;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:142;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:143;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:144;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:145;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:146;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:147;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:148;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:149;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:150;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:151;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:152;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:153;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:154;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:155;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:156;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:157;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:158;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:159;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:160;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:161;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:162;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:163;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:164;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:165;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:166;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:167;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:168;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:169;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:170;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:171;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:172;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:173;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:174;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:175;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:176;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:177;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:178;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:179;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:180;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:181;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:182;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:183;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:184;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:185;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:186;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:187;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:188;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:189;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:190;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:191;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:192;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:193;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:194;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:195;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:196;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:197;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:198;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:199;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:200;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:201;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:202;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:203;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:204;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:205;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:206;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:207;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:208;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:209;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:210;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:211;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:212;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:213;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:214;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:215;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:216;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:217;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:218;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:219;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:220;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:221;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:222;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:223;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:224;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:225;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:226;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:227;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:228;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:229;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:230;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:231;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:232;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:233;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:234;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:235;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:236;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:237;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:238;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:239;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:240;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:241;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:242;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:243;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:244;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:245;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:246;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:247;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:248;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:249;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:250;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:251;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:252;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:253;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:254;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:255;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:256;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:257;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:258;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:259;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:260;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:261;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:262;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:263;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:264;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:265;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:266;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:267;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:268;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:269;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:270;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:271;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:272;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:273;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:274;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:275;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:276;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:277;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:278;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:279;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:280;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:281;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:282;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:283;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:284;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:285;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:286;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:287;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:288;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:289;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:290;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:291;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:292;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:293;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:294;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:295;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:296;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:297;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:298;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:299;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:300;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:301;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:302;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:303;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:304;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:305;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:306;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:307;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:308;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:309;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:310;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:311;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:312;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:313;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:314;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:315;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:316;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:317;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:318;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:319;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:320;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:321;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:322;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:323;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:324;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:325;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:326;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:327;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:328;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:329;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:330;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:331;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:332;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:333;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:334;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:335;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:336;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:337;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:338;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:339;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:340;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:341;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:342;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:343;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:344;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:345;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:346;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:347;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:348;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:349;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:350;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:351;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:352;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:353;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:354;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:355;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:356;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:357;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:358;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:359;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:360;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:361;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:362;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:363;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:364;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:365;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:366;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:367;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:368;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:369;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:370;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:371;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:372;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:373;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:374;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:375;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:376;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:377;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:378;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:379;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:380;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:381;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:382;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:383;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:384;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:385;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:386;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:387;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:388;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:389;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:390;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:391;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:392;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:393;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:394;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:395;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:396;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:397;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:398;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:399;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:400;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:401;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:402;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:403;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:404;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:405;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:406;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:407;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:408;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:409;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:410;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:411;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:412;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:413;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:414;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:415;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:416;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:417;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:418;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:419;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:420;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:421;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:422;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:423;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:424;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:425;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:426;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:427;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:428;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:429;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:430;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:431;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:432;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:433;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:434;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:435;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:436;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:437;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:438;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:439;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:440;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:441;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:442;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:443;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:444;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:445;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:446;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:447;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:448;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:449;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:450;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:451;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:452;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:453;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:454;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:455;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:456;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:457;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:458;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:459;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:460;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:461;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:462;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:463;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:464;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:465;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:466;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:467;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:468;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:469;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:470;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:471;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:472;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:473;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:474;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:475;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:476;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:477;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:478;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:479;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:480;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:481;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:482;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:483;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:484;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:485;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:486;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:487;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:488;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:489;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:490;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:491;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:492;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:493;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:494;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:495;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:496;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:497;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:498;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:499;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:500;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:501;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:502;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:503;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:504;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:505;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:506;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:507;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:508;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:509;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:510;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:511;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:512;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:513;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:514;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:515;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:516;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:517;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:518;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:519;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:520;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:521;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:522;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:523;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:524;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:525;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:526;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:527;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:528;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:529;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:530;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:531;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:532;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:533;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:534;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:535;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:536;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:537;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:538;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:539;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:540;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:541;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:542;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:543;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:544;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:545;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:546;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:547;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:548;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:549;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:550;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:551;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:552;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:553;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:554;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:555;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:556;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:557;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:558;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:559;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:560;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:561;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:562;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:563;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:564;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:565;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:566;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:567;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:568;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:569;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:570;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:571;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:572;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:573;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:574;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:575;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:576;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:577;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:578;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:579;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:580;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:581;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:582;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:583;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:584;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:585;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:586;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:587;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:588;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:589;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:590;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:591;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:592;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:593;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:594;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:595;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:596;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:597;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:598;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:599;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:600;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:601;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:602;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:603;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:604;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:605;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:606;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:607;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:608;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:609;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:610;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:611;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:612;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:613;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:614;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:615;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:616;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:617;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:618;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:619;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:620;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:621;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:622;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:623;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:624;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:625;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:626;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:627;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:628;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:629;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:630;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:631;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:632;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:633;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:634;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:635;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:636;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:637;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:638;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:639;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:640;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:641;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:642;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:643;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:644;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:645;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:646;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:647;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:648;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:649;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:650;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:651;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:652;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:653;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:654;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:655;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:656;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:657;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:658;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:659;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:660;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:661;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:662;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:663;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:664;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:665;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:666;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:667;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:668;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:669;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:670;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:671;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:672;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:673;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:674;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:675;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:676;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:677;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:678;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:679;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:680;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:681;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:682;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:683;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:684;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:685;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:686;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:687;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:688;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:689;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:690;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:691;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:692;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:693;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:694;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:695;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:696;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:697;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:698;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:699;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:700;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:701;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:702;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:703;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:704;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:705;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:706;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:707;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:708;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:709;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:710;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:711;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:712;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:713;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:714;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:715;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:716;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:717;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:718;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:719;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:720;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:721;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:722;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:723;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:724;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:725;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:726;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:727;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:728;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:729;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:730;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:731;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:732;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:733;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:734;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:735;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:736;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:737;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:738;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:739;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:740;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:741;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:742;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:743;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:744;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:745;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:746;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:747;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:748;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:749;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:750;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:751;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:752;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:753;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:754;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:755;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:756;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:757;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:758;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:759;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:760;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:761;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:762;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:763;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:764;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:765;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:766;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:767;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:768;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:769;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:770;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:771;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:772;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:773;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:774;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:775;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:776;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:777;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:778;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:779;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:780;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:781;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:782;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:783;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:784;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:785;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:786;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:787;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:788;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:789;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:790;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:791;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:792;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:793;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:794;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:795;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:796;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:797;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:798;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:799;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:800;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:801;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:802;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:803;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:804;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:805;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:806;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:807;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:808;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:809;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:810;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:811;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:812;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:813;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:814;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:815;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:816;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:817;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:818;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:819;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:820;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:821;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:822;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:823;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:824;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:825;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:826;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:827;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:828;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:829;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:830;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:831;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:832;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:833;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:834;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:835;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:836;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:837;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:838;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:839;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:840;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:841;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:842;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:843;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:844;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:845;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:846;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:847;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:848;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:849;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:850;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:851;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:852;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:853;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:854;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:855;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:856;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:857;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:858;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:859;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:860;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:861;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:862;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:863;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:864;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:865;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:866;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:867;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:868;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:869;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:870;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:871;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:872;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:873;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:874;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:875;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:876;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:877;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:878;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:879;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:880;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:881;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:882;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:883;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:884;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:885;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:886;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:887;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:888;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:889;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:890;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:891;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:892;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:893;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:894;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:895;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:896;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:897;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:898;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:899;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:900;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:901;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:902;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:903;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:17:\"system_typography\";a:4:{i:0;a:7:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:1;a:7:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"Restaurant\";s:16:\"site_description\";s:27:\"Rishi Theme Restaurant Demo\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:12:\"rishi_colors\";a:8:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1190;s:5:\"sizes\";a:0:{}}s:21:\"space_between_widgets\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(1541,4701,'_elementor_data','[]'),(1542,4701,'_elementor_page_assets','a:0:{}'),(1550,4705,'_edit_lock','1694138560:2'),(1559,4708,'_edit_lock','1694138843:2'),(1566,106,'_edit_lock','1697384322:2'),(1592,4712,'_wp_attached_file','2023/09/interior.jpg'),(1593,4712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:404;s:4:\"file\";s:20:\"2023/09/interior.jpg\";s:8:\"filesize\";i:91611;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"interior-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10874;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"interior-500x404.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60271;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"interior-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26384;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"interior-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29964;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"interior-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18810;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"interior-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36702;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"interior-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39057;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"interior-570x404.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67654;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"interior-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18555;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"interior-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51588;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"interior-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12795;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"interior-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"interior-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1596,4713,'_wp_attached_file','2023/09/food.jpg'),(1597,4713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2023/09/food.jpg\";s:8:\"filesize\";i:52538;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"food-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"food-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9219;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"food-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33735;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"food-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18612;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"food-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20299;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"food-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14292;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"food-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24424;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"food-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25851;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"food-570x427.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40100;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"food-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13975;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"food-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31580;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"food-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10408;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"food-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19714;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"food-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1645,106,'_elementor_pro_version','3.14.1'),(1754,4735,'_wp_attached_file','2023/09/daaal.jpg'),(1755,4735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2023/09/daaal.jpg\";s:8:\"filesize\";i:67056;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"daaal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"daaal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"daaal-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77175;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"daaal-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36325;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"daaal-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18811;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"daaal-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20146;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"daaal-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13290;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"daaal-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26091;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"daaal-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27858;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"daaal-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48569;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"daaal-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12814;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"daaal-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32940;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"daaal-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8868;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"daaal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20272;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"daaal-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78534;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"daaal-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56675;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"daaal-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18953;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1756,4735,'_wp_attachment_image_alt','healthy food restaurant'),(1757,4736,'_wp_attached_file','2023/09/sbzi-alo.jpg'),(1758,4736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:20:\"2023/09/sbzi-alo.jpg\";s:8:\"filesize\";i:86993;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7523;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98584;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45437;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21865;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24433;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14790;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31137;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33363;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61081;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14528;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40463;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9288;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23381;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102820;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72460;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1759,4736,'_wp_attachment_image_alt',''),(1760,4737,'_wp_attached_file','2023/09/thali.jpg'),(1761,4737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/09/thali.jpg\";s:8:\"filesize\";i:430630;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"thali-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21854;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"thali-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"thali-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"thali-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111847;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"thali-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58144;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"thali-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27134;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"thali-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28661;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"thali-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18618;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"thali-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38727;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"thali-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41518;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"thali-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82171;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"thali-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16556;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"thali-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51666;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"thali-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10866;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"thali-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28811;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"thali-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185761;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"thali-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101813;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"thali-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1762,4737,'_wp_attachment_image_alt',''),(1818,4744,'_wp_attached_file','2023/09/menu.jpg'),(1819,4744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:660;s:4:\"file\";s:16:\"2023/09/menu.jpg\";s:8:\"filesize\";i:106004;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"menu-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20696;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"menu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9837;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"menu-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92974;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"menu-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56015;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"menu-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27598;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"menu-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28628;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"menu-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18808;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"menu-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38428;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"menu-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41214;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"menu-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76939;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"menu-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17373;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"menu-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50466;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"menu-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11984;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"menu-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29129;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:16:\"menu-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140467;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:16:\"menu-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90793;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"menu-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27012;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1820,4745,'_wp_attached_file','2023/09/gravy.jpg'),(1821,4745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:174;s:4:\"file\";s:17:\"2023/09/gravy.jpg\";s:8:\"filesize\";i:27804;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"gravy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10793;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"gravy-197x174.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17985;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"gravy-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1822,4746,'_wp_attached_file','2023/09/khana.jpg'),(1823,4746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/09/khana.jpg\";s:8:\"filesize\";i:407602;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"khana-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20562;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"khana-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177940;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"khana-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"khana-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107529;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"khana-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54997;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"khana-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24900;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"khana-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27188;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"khana-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16755;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"khana-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36153;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"khana-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38997;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"khana-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78339;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"khana-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"khana-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49990;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"khana-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9757;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"khana-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26609;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"khana-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177992;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"khana-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97474;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"khana-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1896,106,'_last_editor_used_jetpack','block-editor'),(1898,4756,'_edit_lock','1694743609:2'),(1901,4758,'_wp_attached_file','2023/09/7776956.jpg'),(1902,4758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:19:\"2023/09/7776956.jpg\";s:8:\"filesize\";i:233662;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35481;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"7776956-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"7776956-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"7776956-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61790;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:19:\"7776956-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44925;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:19:\"7776956-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36015;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:19:\"7776956-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38026;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:19:\"7776956-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34005;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:19:\"7776956-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37832;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:19:\"7776956-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38752;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:19:\"7776956-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48993;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:19:\"7776956-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33604;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:19:\"7776956-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47225;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:19:\"7776956-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30156;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:19:\"7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35481;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"7776956-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123587;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"7776956-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84003;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:19:\"7776956-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58033;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:19:\"7776956-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37409;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1903,4758,'_edit_lock','1694743468:2'),(1904,4758,'_edit_last','2'),(1942,4769,'_wp_attached_file','2023/10/coffe.jpg'),(1943,4769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:765;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/10/coffe.jpg\";s:8:\"filesize\";i:238076;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"coffe-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"coffe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9277;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"coffe-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51669;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"coffe-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28387;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"coffe-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25734;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"coffe-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20168;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"coffe-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37671;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"coffe-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40246;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"coffe-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73494;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"coffe-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15645;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"coffe-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41671;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"coffe-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11444;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"coffe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28438;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"coffe-765x650.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116996;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"coffe-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81797;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"coffe-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23997;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1944,4770,'_wp_attached_file','2023/10/minestrone-soup.jpg'),(1945,4770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:27:\"2023/10/minestrone-soup.jpg\";s:8:\"filesize\";i:196509;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15334;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"minestrone-soup-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8534;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59604;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33926;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18680;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19546;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14103;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24510;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26023;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47315;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13086;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33882;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9727;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19234;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:28:\"minestrone-soup-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106082;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56513;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1983,4775,'_wp_page_template','elementor_header_footer'),(1984,4775,'_elementor_edit_mode','builder'),(1985,4775,'_elementor_template_type','wp-page'),(1986,4775,'_elementor_version','3.16.5'),(1987,4775,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4770,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/minestrone-soup.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1988,4775,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1989,4775,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1990,4775,'_elementor_pro_version','3.14.1'),(1992,4776,'_wp_page_template','elementor_header_footer'),(1993,4776,'_elementor_edit_mode','builder'),(1994,4776,'_elementor_template_type','wp-page'),(1995,4776,'_elementor_version','3.16.5'),(1996,4776,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1997,4776,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1998,4776,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1999,4776,'_elementor_pro_version','3.14.1'),(2002,4777,'_wp_page_template','elementor_header_footer'),(2003,4777,'_elementor_edit_mode','builder'),(2004,4777,'_elementor_template_type','wp-page'),(2005,4777,'_elementor_version','3.16.5'),(2006,4777,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2007,4777,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2008,4777,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2009,4777,'_elementor_pro_version','3.14.1'),(2011,4778,'_wp_page_template','elementor_header_footer'),(2012,4778,'_elementor_edit_mode','builder'),(2013,4778,'_elementor_template_type','wp-page'),(2014,4778,'_elementor_version','3.16.5'),(2015,4778,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2016,4778,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2017,4778,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2018,4778,'_elementor_pro_version','3.14.1'),(2020,4779,'_wp_page_template','elementor_header_footer'),(2021,4779,'_elementor_edit_mode','builder'),(2022,4779,'_elementor_template_type','wp-page'),(2023,4779,'_elementor_version','3.16.5'),(2024,4779,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe-765x650.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"rishi-fullwidth\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2025,4779,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2026,4779,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2027,4779,'_elementor_pro_version','3.14.1'),(2031,4780,'_edit_lock','1697266498:2'),(2061,4785,'_wp_attached_file','2023/09/cropped-7776956.jpg'),(2062,4785,'_wp_attachment_context','site-icon'),(2063,4785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2023/09/cropped-7776956.jpg\";s:8:\"filesize\";i:55908;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39928;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31270;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53132;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40504;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42771;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37424;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43112;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44346;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37252;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-512x320.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52558;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32160;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39928;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42379;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38156;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33434;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32783;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:25:\"cropped-7776956-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26526;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2072,4787,'_edit_lock','1697267307:2'),(2075,4785,'_oembed_1ac3ba6cfed5a2c175af1419b8433b97','{{unknown}}');
/*!40000 ALTER TABLE `ajj_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_posts`
--

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

--
-- Dumping data for table `ajj_posts`
--

LOCK TABLES `ajj_posts` WRITE;
/*!40000 ALTER TABLE `ajj_posts` DISABLE KEYS */;
INSERT INTO `ajj_posts` VALUES (1,1,'2023-09-07 01:48:25','2023-09-07 01:48:25','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-09-07 01:48:25','2023-09-07 01:48:25','',0,'http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call]/?p=1',0,'post','',1),(3,1,'2023-09-07 01:48:25','2023-09-07 01:48:25','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call].</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-09-07 01:48:25','2023-09-07 01:48:25','',0,'http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call]/?page_id=3',0,'page','',0),(4,0,'2023-09-07 01:48:44','2023-09-07 01:48:44','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-09-07 01:48:44','2023-09-07 01:48:44','',0,'https://healthyfoodrestaurant.in/navigation/',0,'wp_navigation','',0),(5,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','Repeat-Grid-1-1_image','','inherit','open','closed','','repeat-grid-1-1_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Repeat-Grid-1-1.png',0,'attachment','image/png',0),(7,1,'2023-09-07 02:09:38','2023-09-07 02:09:38','','rishi-restaurant.xml','','inherit','open','closed','','rishi-restaurant-xml','','','2023-09-07 02:09:38','2023-09-07 02:09:38','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/rishi-restaurant.xml',0,'attachment','text/xml',0),(8,1,'2021-02-17 11:45:29','2021-02-17 11:45:29','','Page-1_image','','inherit','open','closed','','page-1_image','','','2021-02-17 11:45:29','2021-02-17 11:45:29','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1.png',0,'attachment','image/png',0),(9,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','amirali-mirhashemian-4gmBIFraSuE-unsplash_image','','inherit','open','closed','','amirali-mirhashemian-4gmbifrasue-unsplash_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png',0,'attachment','image/png',0),(10,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','bg_image','','inherit','open','closed','','bg_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/bg.png',0,'attachment','image/png',0),(11,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','cayla1-w6ftFbPCs9I-unsplash_image','','inherit','open','closed','','cayla1-w6ftfbpcs9i-unsplash_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/cayla1-w6ftFbPCs9I-unsplash.png',0,'attachment','image/png',0),(12,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','cheesecake-stuffed-strawberries-500x500-1_image','','inherit','open','closed','','cheesecake-stuffed-strawberries-500x500-1_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/cheesecake-stuffed-strawberries-500x500-1.png',0,'attachment','image/png',0),(13,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','chef_image','','inherit','open','closed','','chef_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/chef.png',0,'attachment','image/png',0),(14,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','febrian-zakaria-SiQgni-cqFg-unsplash_image','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png',0,'attachment','image/png',0),(15,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','humphrey-muleba-YpPeBSqiQ-0-unsplash_image','','inherit','open','closed','','humphrey-muleba-yppebsqiq-0-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png',0,'attachment','image/png',0),(16,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','jason-leung-AUAuEgUxg5Q-unsplash_image','','inherit','open','closed','','jason-leung-auaueguxg5q-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png',0,'attachment','image/png',0),(17,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','jennifer-burk-gwBcamFtPr4-unsplash_image','','inherit','open','closed','','jennifer-burk-gwbcamftpr4-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png',0,'attachment','image/png',0),(18,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','leaf_image','','inherit','open','closed','','leaf_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf.png',0,'attachment','image/png',0),(19,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash_image','','inherit','open','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png',0,'attachment','image/png',0),(20,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash_image','','inherit','open','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png',0,'attachment','image/png',0),(21,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','lunch_image','','inherit','open','closed','','lunch_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/lunch.png',0,'attachment','image/png',0),(22,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','make-a-reservation_image','','inherit','open','closed','','make-a-reservation_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/make-a-reservation.png',0,'attachment','image/png',0),(23,1,'2021-02-17 11:45:57','2021-02-17 11:45:57','','malin-strandvall-qw1hNqrMNwI-unsplash_image','','inherit','open','closed','','malin-strandvall-qw1hnqrmnwi-unsplash_image','','','2021-02-17 11:45:57','2021-02-17 11:45:57','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png',0,'attachment','image/png',0),(24,1,'2021-02-17 11:45:57','2021-02-17 11:45:57','','offer_image','','inherit','open','closed','','offer_image','','','2021-02-17 11:45:57','2021-02-17 11:45:57','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer.png',0,'attachment','image/png',0),(25,1,'2021-02-17 11:45:59','2021-02-17 11:45:59','','refresh_image','','inherit','open','closed','','refresh_image','','','2021-02-17 11:45:59','2021-02-17 11:45:59','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/refresh.png',0,'attachment','image/png',0),(26,1,'2021-02-17 11:45:59','2021-02-17 11:45:59','','screenshot-2020.08.06-07_47_52_image','','inherit','open','closed','','screenshot-2020-08-06-07_47_52_image','','','2021-02-17 11:45:59','2021-02-17 11:45:59','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52.png',0,'attachment','image/png',0),(27,1,'2021-02-17 11:46:00','2021-02-17 11:46:00','','screenshot-2020.08.06-07_48_28_image','','inherit','open','closed','','screenshot-2020-08-06-07_48_28_image','','','2021-02-17 11:46:00','2021-02-17 11:46:00','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28.png',0,'attachment','image/png',0),(28,1,'2021-02-17 11:46:02','2021-02-17 11:46:02','','sign_image','','inherit','open','closed','','sign_image','','','2021-02-17 11:46:02','2021-02-17 11:46:02','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/sign.png',0,'attachment','image/png',0),(29,1,'2021-02-17 11:46:02','2021-02-17 11:46:02','','testimonial-bg_image','','inherit','open','closed','','testimonial-bg_image','','','2021-02-17 11:46:02','2021-02-17 11:46:02','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/testimonial-bg.png',0,'attachment','image/png',0),(30,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','tim-chow-MhpxHv0FKtE-unsplash_image','','inherit','open','closed','','tim-chow-mhpxhv0fkte-unsplash_image','','','2021-02-17 11:46:14','2021-02-17 11:46:14','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/tim-chow-MhpxHv0FKtE-unsplash.png',0,'attachment','image/png',0),(31,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','wedding-dinner_image','','inherit','open','closed','','wedding-dinner_image','','','2021-02-17 11:46:14','2021-02-17 11:46:14','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png',0,'attachment','image/png',0),(32,1,'2021-02-17 11:46:15','2021-02-17 11:46:15','','bg.png','','inherit','open','closed','','bg-png','','','2021-02-17 11:46:15','2021-02-17 11:46:15','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/bg-1.png',0,'attachment','image/png',0),(33,1,'2021-02-17 11:46:21','2021-02-17 11:46:21','','leaf.png','','inherit','open','closed','','leaf-png','','','2021-02-17 11:46:21','2021-02-17 11:46:21','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png',0,'attachment','image/png',0),(34,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','refresh.png','','inherit','open','closed','','refresh-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/refresh-1.png',0,'attachment','image/png',0),(35,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','chef.png','','inherit','open','closed','','chef-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/chef-1.png',0,'attachment','image/png',0),(36,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','screenshot-2020.08.06-07_47_52.png','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1.png',0,'attachment','image/png',0),(37,1,'2021-02-17 11:46:23','2021-02-17 11:46:23','','screenshot-2020.08.06-07_48_28.png','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-png','','','2021-02-17 11:46:23','2021-02-17 11:46:23','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png',0,'attachment','image/png',0),(38,1,'2021-02-17 11:46:25','2021-02-17 11:46:25','','offer.png','','inherit','open','closed','','offer-png','','','2021-02-17 11:46:25','2021-02-17 11:46:25','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png',0,'attachment','image/png',0),(39,1,'2021-02-17 11:46:27','2021-02-17 11:46:27','','Page-1.png','','inherit','open','closed','','page-1-png','','','2021-02-17 11:46:27','2021-02-17 11:46:27','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png',0,'attachment','image/png',0),(40,1,'2021-02-17 11:46:27','2021-02-17 11:46:27','','lunch.png','','inherit','open','closed','','lunch-png','','','2021-02-17 11:46:27','2021-02-17 11:46:27','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/lunch-1.png',0,'attachment','image/png',0),(41,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','wedding-dinner.png','','inherit','open','closed','','wedding-dinner-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner-1.png',0,'attachment','image/png',0),(42,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','cayla1-w6ftFbPCs9I-unsplash.png','','inherit','open','closed','','cayla1-w6ftfbpcs9i-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png',0,'attachment','image/png',0),(43,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','Repeat-Grid-1-1.png','','inherit','open','closed','','repeat-grid-1-1-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Repeat-Grid-1-1-1.png',0,'attachment','image/png',0),(44,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','jason-leung-AUAuEgUxg5Q-unsplash.png','','inherit','open','closed','','jason-leung-auaueguxg5q-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png',0,'attachment','image/png',0),(45,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','malin-strandvall-qw1hNqrMNwI-unsplash.png','','inherit','open','closed','','malin-strandvall-qw1hnqrmnwi-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png',0,'attachment','image/png',0),(46,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','humphrey-muleba-YpPeBSqiQ-0-unsplash.png','','inherit','open','closed','','humphrey-muleba-yppebsqiq-0-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png',0,'attachment','image/png',0),(47,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png','','inherit','open','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png',0,'attachment','image/png',0),(48,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png','','inherit','open','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png',0,'attachment','image/png',0),(49,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','cheesecake-stuffed-strawberries-500x500-1.png','','inherit','open','closed','','cheesecake-stuffed-strawberries-500x500-1-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png',0,'attachment','image/png',0),(50,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','jennifer-burk-gwBcamFtPr4-unsplash.png','','inherit','open','closed','','jennifer-burk-gwbcamftpr4-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png',0,'attachment','image/png',0),(51,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','amirali-mirhashemian-4gmBIFraSuE-unsplash.png','','inherit','open','closed','','amirali-mirhashemian-4gmbifrasue-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png',0,'attachment','image/png',0),(52,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','tim-chow-MhpxHv0FKtE-unsplash.png','','inherit','open','closed','','tim-chow-mhpxhv0fkte-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png',0,'attachment','image/png',0),(53,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','sign.png','','inherit','open','closed','','sign-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/sign-1.png',0,'attachment','image/png',0),(54,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','febrian-zakaria-SiQgni-cqFg-unsplash.png','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png',0,'attachment','image/png',0),(57,1,'2021-02-17 11:46:32','2021-02-17 11:46:32','','testimonial-bg.png','','inherit','open','closed','','testimonial-bg-png','','','2021-02-17 11:46:32','2021-02-17 11:46:32','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/testimonial-bg-1.png',0,'attachment','image/png',0),(78,1,'2021-02-17 11:47:01','2021-02-17 11:47:01','','testimonial-bg.png','','inherit','open','closed','','testimonial-bg-png-2','','','2021-02-17 11:47:01','2021-02-17 11:47:01','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/testimonial-bg-1-1.png',0,'attachment','image/png',0),(79,1,'2021-02-17 11:47:13','2021-02-17 11:47:13','','make-a-reservation.png','','inherit','open','closed','','make-a-reservation-png','','','2021-02-17 11:47:13','2021-02-17 11:47:13','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/make-a-reservation-1.png',0,'attachment','image/png',0),(85,1,'2021-02-23 02:43:48','2021-02-23 02:43:48','','rishi-live-restaurant-home','','publish','closed','closed','','rishi-live-restaurant-home','','','2021-02-23 02:43:48','2021-02-23 02:43:48','',0,'https://healthyfoodrestaurant.in/?elementor_library=rishi-live-restaurant-home',0,'elementor_library','',0),(87,1,'2021-02-23 02:44:17','2021-02-23 02:44:17','','about-bg_image','','inherit','open','closed','','about-bg_image','','','2021-02-23 02:44:17','2021-02-23 02:44:17','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/about-bg.png',0,'attachment','image/png',0),(88,1,'2021-02-23 02:44:23','2021-02-23 02:44:23','','brooke-cagle-8jp-6SjVibM-unsplash-1_image','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-1_image','','','2021-02-23 02:44:23','2021-02-23 02:44:23','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png',0,'attachment','image/png',0),(89,1,'2021-02-23 02:44:26','2021-02-23 02:44:26','','brooke-cagle-8jp-6SjVibM-unsplash_image','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash_image','','','2021-02-23 02:44:26','2021-02-23 02:44:26','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png',0,'attachment','image/png',0),(90,1,'2021-02-23 02:44:27','2021-02-23 02:44:27','','elevate-iv6yNy7oBqQ-unsplash-1_image','','inherit','open','closed','','elevate-iv6yny7obqq-unsplash-1_image','','','2021-02-23 02:44:27','2021-02-23 02:44:27','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png',0,'attachment','image/png',0),(91,1,'2021-02-23 02:44:29','2021-02-23 02:44:29','','febrian-zakaria-SiQgni-cqFg-unsplash-2_image','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-2_image','','','2021-02-23 02:44:29','2021-02-23 02:44:29','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png',0,'attachment','image/png',0),(92,1,'2021-02-23 02:44:31','2021-02-23 02:44:31','','petr-sevcovic-e5Q5vWO55uU-unsplash-1_image','','inherit','open','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1_image','','','2021-02-23 02:44:31','2021-02-23 02:44:31','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png',0,'attachment','image/png',0),(93,1,'2021-02-23 02:44:32','2021-02-23 02:44:32','','screenshot-2020.08.06-07_47_52-1_image','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-1_image','','','2021-02-23 02:44:32','2021-02-23 02:44:32','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1-1.png',0,'attachment','image/png',0),(94,1,'2021-02-23 02:44:33','2021-02-23 02:44:33','','screenshot-2020.08.06-07_48_28-1_image','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-1_image','','','2021-02-23 02:44:33','2021-02-23 02:44:33','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1-1.png',0,'attachment','image/png',0),(95,1,'2021-02-23 02:44:35','2021-02-23 02:44:35','','about-bg.png','','inherit','open','closed','','about-bg-png','','','2021-02-23 02:44:35','2021-02-23 02:44:35','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/about-bg-1.png',0,'attachment','image/png',0),(96,1,'2021-02-23 02:44:43','2021-02-23 02:44:43','','brooke-cagle-8jp-6SjVibM-unsplash.png','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-png','','','2021-02-23 02:44:43','2021-02-23 02:44:43','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png',0,'attachment','image/png',0),(97,1,'2021-02-23 02:44:45','2021-02-23 02:44:45','','febrian-zakaria-SiQgni-cqFg-unsplash-2.png','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-2-png','','','2021-02-23 02:44:45','2021-02-23 02:44:45','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png',0,'attachment','image/png',0),(98,1,'2021-02-23 02:44:47','2021-02-23 02:44:47','','elevate-iv6yNy7oBqQ-unsplash-1.png','','inherit','open','closed','','elevate-iv6yny7obqq-unsplash-1-png','','','2021-02-23 02:44:47','2021-02-23 02:44:47','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png',0,'attachment','image/png',0),(99,1,'2021-02-23 02:44:49','2021-02-23 02:44:49','','petr-sevcovic-e5Q5vWO55uU-unsplash-1.png','','inherit','open','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1-png','','','2021-02-23 02:44:49','2021-02-23 02:44:49','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png',0,'attachment','image/png',0),(100,1,'2021-02-23 02:44:50','2021-02-23 02:44:50','','screenshot-2020.08.06-07_47_52-1.png','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-1-png','','','2021-02-23 02:44:50','2021-02-23 02:44:50','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1-2.png',0,'attachment','image/png',0),(101,1,'2021-02-23 02:44:51','2021-02-23 02:44:51','','brooke-cagle-8jp-6SjVibM-unsplash-1.png','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-1-png','','','2021-02-23 02:44:51','2021-02-23 02:44:51','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png',0,'attachment','image/png',0),(102,1,'2021-02-23 02:44:53','2021-02-23 02:44:53','','screenshot-2020.08.06-07_48_28-1.png','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-1-png','','','2021-02-23 02:44:53','2021-02-23 02:44:53','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1-2.png',0,'attachment','image/png',0),(103,1,'2021-02-23 02:44:54','2021-02-23 02:44:54','','rishi-live-restaurant-about','','publish','closed','closed','','rishi-live-restaurant-about','','','2021-02-23 02:44:54','2021-02-23 02:44:54','',0,'https://healthyfoodrestaurant.in/?elementor_library=rishi-live-restaurant-about',0,'elementor_library','',0),(106,1,'2021-02-23 03:07:30','2021-02-23 03:07:30','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','publish','closed','closed','','home','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',0,'https://healthyfoodrestaurant.in/home/',0,'page','',0),(115,1,'2021-02-23 03:14:08','2021-02-23 03:14:08','','About','','publish','closed','closed','','about','','','2021-02-23 03:14:08','2021-02-23 03:14:08','',0,'https://healthyfoodrestaurant.in/about/',0,'page','',0),(120,1,'2021-11-22 08:13:24','2021-02-23 04:08:07',' ','','','publish','closed','closed','','120','','','2021-11-22 08:13:24','2021-02-23 04:08:07','',0,'https://healthyfoodrestaurant.in/120/',1,'nav_menu_item','',0),(121,1,'2021-11-22 08:13:24','2021-02-23 04:08:07',' ','','','publish','closed','closed','','121','','','2021-11-22 08:13:24','2021-02-23 04:08:07','',0,'https://healthyfoodrestaurant.in/121/',2,'nav_menu_item','',0),(134,1,'2021-03-09 06:00:30','2021-03-09 06:00:30','','alex-munsell-auIbTAcSH6E-unsplash','','inherit','open','closed','','alex-munsell-auibtacsh6e-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg',0,'attachment','image/jpeg',0),(296,1,'2021-03-09 08:25:34','2021-03-09 08:25:34','','4817','','inherit','open','closed','','4817','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/03/4817.jpg',0,'attachment','image/jpeg',0),(564,1,'2021-08-23 04:19:18','2021-08-23 04:19:18','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-08-23 04:19:18','2021-08-23 04:19:18','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/08/woocommerce-placeholder.png',0,'attachment','image/png',0),(608,1,'2021-11-18 17:23:59','2021-11-18 17:23:59','','bg','','inherit','closed','closed','','bg','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/bg.jpg',0,'attachment','image/jpeg',0),(749,1,'2021-11-19 03:29:45','2021-11-19 03:29:45','','Menu','','publish','closed','closed','','menu','','','2021-11-19 03:29:45','2021-11-19 03:29:45','',0,'https://healthyfoodrestaurant.in/menu/',0,'page','',0),(751,1,'2021-11-19 03:30:51','2021-11-19 03:30:51','','Testimonials','','publish','closed','closed','','testimonials','','','2021-11-19 03:30:51','2021-11-19 03:30:51','',0,'https://healthyfoodrestaurant.in/testimonials/',0,'page','',0),(753,1,'2021-11-19 03:31:41','2021-11-19 03:31:41','','Contact','','publish','closed','closed','','contact','','','2021-11-19 03:31:41','2021-11-19 03:31:41','',0,'https://healthyfoodrestaurant.in/contact/',0,'page','',0),(755,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','755','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/755/',7,'nav_menu_item','',0),(756,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','756','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/756/',5,'nav_menu_item','',0),(757,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','757','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/757/',4,'nav_menu_item','',0),(762,1,'2021-11-19 03:39:15','2021-11-19 03:39:15','','logo','','inherit','closed','closed','','logo','','','2021-11-19 03:39:15','2021-11-19 03:39:15','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo.jpg',0,'attachment','image/jpeg',0),(764,1,'2021-11-19 03:40:07','2021-11-19 03:40:07','','logo','','inherit','closed','closed','','logo-2','','','2021-11-19 03:40:07','2021-11-19 03:40:07','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo.png',0,'attachment','image/png',0),(767,1,'2021-11-19 03:50:34','2021-11-19 03:50:34','','facebook-logo','','inherit','closed','closed','','facebook-logo','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/facebook-logo.svg',0,'attachment','image/svg+xml',0),(768,1,'2021-11-19 03:51:04','2021-11-19 03:51:04','','twitter','','inherit','closed','closed','','twitter','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/twitter.svg',0,'attachment','image/svg+xml',0),(769,1,'2021-11-19 03:51:21','2021-11-19 03:51:21','','instagram','','inherit','closed','closed','','instagram','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/instagram.svg',0,'attachment','image/svg+xml',0),(770,1,'2021-11-19 03:51:43','2021-11-19 03:51:43','','linkedin','','inherit','closed','closed','','linkedin','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/linkedin.svg',0,'attachment','image/svg+xml',0),(829,1,'2021-11-19 06:18:43','2021-11-19 06:18:43','','nikldn-HzVHlwvQlyw-unsplash','','inherit','closed','closed','','nikldn-hzvhlwvqlyw-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg',0,'attachment','image/jpeg',0),(837,1,'2021-11-19 06:45:21','2021-11-19 06:45:21','','victoria-shes-kKULRLHdtLo-unsplash-13','','inherit','closed','closed','','victoria-shes-kkulrlhdtlo-unsplash-13','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg',0,'attachment','image/jpeg',0),(839,1,'2021-11-19 07:01:46','2021-11-19 07:01:46','','victoria-shes-kKULRLHdtLo-unsplash-3','','inherit','closed','closed','','victoria-shes-kkulrlhdtlo-unsplash-3','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg',0,'attachment','image/jpeg',0),(840,1,'2021-11-19 07:15:53','2021-11-19 07:15:53','','jordi-pujadas-MHzYnDM34IQ-unsplash','','inherit','closed','closed','','jordi-pujadas-mhzyndm34iq-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash.jpg',0,'attachment','image/jpeg',0),(841,1,'2021-11-19 07:16:32','2021-11-19 07:16:32','','jordi-pujadas-MHzYnDM34IQ-unsplash (1)','','inherit','closed','closed','','jordi-pujadas-mhzyndm34iq-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg',0,'attachment','image/jpeg',0),(856,1,'2021-11-19 07:41:30','2021-11-19 07:41:30','','brooke-lark-oaz0raysASk-unsplash (1)','','inherit','closed','closed','','brooke-lark-oaz0raysask-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg',0,'attachment','image/jpeg',0),(860,1,'2021-11-19 07:43:33','2021-11-19 07:43:33','','stil-u2Lp8tXIcjw-unsplash (1)','','inherit','closed','closed','','stil-u2lp8txicjw-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg',0,'attachment','image/jpeg',0),(864,1,'2021-11-19 07:46:09','2021-11-19 07:46:09','','casey-lee-awj7sRviVXo-unsplash (1)','','inherit','closed','closed','','casey-lee-awj7srvivxo-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg',0,'attachment','image/jpeg',0),(868,1,'2021-11-19 07:50:04','2021-11-19 07:50:04','','joseph-gonzalez-fdlZBWIP0aM-unsplash (1)','','inherit','closed','closed','','joseph-gonzalez-fdlzbwip0am-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg',0,'attachment','image/jpeg',0),(1029,1,'2021-11-19 10:00:54','2021-11-19 10:00:54','','febrian-zakaria-SiQgni-cqFg-unsplash','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg',0,'attachment','image/jpeg',0),(1073,1,'2021-11-22 04:23:22','2021-11-22 04:23:22','','brooke-lark-nBtmglfY0HU-unsplash','','inherit','closed','closed','','brooke-lark-nbtmglfy0hu-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg',0,'attachment','image/jpeg',0),(1107,1,'2021-11-22 04:36:20','2021-11-22 04:36:20','','alexandra-lammerink-1','','inherit','closed','closed','','alexandra-lammerink-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/alexandra-lammerink-1.jpg',0,'attachment','image/jpeg',0),(1109,1,'2021-11-22 04:38:53','2021-11-22 04:38:53','','screenshot--22','','inherit','closed','closed','','screenshot-22','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg',0,'attachment','image/jpeg',0),(1110,1,'2021-11-22 04:39:38','2021-11-22 04:39:38','','screenshot--20','','inherit','closed','closed','','screenshot-20','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg',0,'attachment','image/jpeg',0),(1117,1,'2021-11-22 04:42:49','2021-11-22 04:42:49','','screenshot--4','','inherit','closed','closed','','screenshot-4','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg',0,'attachment','image/jpeg',0),(1172,1,'2021-11-22 05:58:22','2021-11-22 05:58:22','[text* Your-full-name placeholder \"Full Name\"]\r\n\r\n[date* Date placeholder \"03/08/2020\"]\r\n\r\n[number* NumberofSeats placeholder \"Number of Seats\"]\r\n\r\n[number* your-number placeholder \"Phone Number\"]\r\n\r\n[email* your-email placeholder \"Email Address\"]\r\n\r\n[submit \"Make a Reservation\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Reservation form','','publish','closed','closed','','reservation-form','','','2021-11-22 05:58:22','2021-11-22 05:58:22','',0,'https://healthyfoodrestaurant.in/?post_type=wpcf7_contact_form&p=1172',0,'wpcf7_contact_form','',0),(1210,1,'2021-11-22 06:12:28','2021-11-22 06:12:28','','Path 24976','','inherit','closed','closed','','path-24976','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Path-24976.png',0,'attachment','image/png',0),(1211,1,'2021-11-22 06:13:26','2021-11-22 06:13:26','','Group 149','','inherit','closed','closed','','group-149','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png',0,'attachment','image/png',0),(1561,1,'2021-11-22 08:12:43','2021-11-22 08:12:43','','Blog','','draft','closed','closed','','blog','','','2023-09-07 13:48:03','2023-09-07 13:48:03','',0,'https://healthyfoodrestaurant.in/blog/',0,'page','',0),(1794,1,'2021-07-20 06:37:46','2021-07-20 06:37:46','<!-- wp:paragraph -->\n<p>You\'ve got your announcement in mind, and now it\'s time to get it down in words to share with you…</p>\n<!-- /wp:paragraph -->\n\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<p>Enabling Online Travel Booking and Reservations</p>\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<blockquote class=\"wp-block-quote is-style-default\">\n<p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p>\n<p><cite><strong>Steve Doe – </strong>Partner</cite></p>\n</blockquote>\n<hr />\n<p>Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<h2>H2:Focus On How You Want to Be</h2>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<h3>H3: Construct a Narrative</h3>\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<h4>H4: Tap Into Your Imagination</h4>\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<h5>H5: Embrace Not Knowing</h5>\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<h6>H6: Remember You Will Survive</h6>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"> </div>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th>Position</th>\n<th>Office</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Erica Romaguera</td>\n<td>Coach</td>\n<td>Audi</td>\n</tr>\n<tr>\n<td>Caleigh Jerde</td>\n<td>Lawyer</td>\n<td>Pizza Hut</td>\n</tr>\n<tr>\n<td>Lucas Schultz</td>\n<td>Librarian</td>\n<td>Burberry</td>\n</tr>\n<tr>\n<td>Carole Marvin</td>\n<td>Educator</td>\n<td>Starbucks</td>\n</tr>\n<tr>\n<td>Woodrow Nikolaus</td>\n<td>Massage Therapist</td>\n<td>Jack Daniel’s</td>\n</tr>\n</tbody>\n</table>\n</figure>','Cooking as a whole package item like it did','','publish','closed','closed','','cooking-as-a-whole-package-item-like-it-did-2','','','2021-07-20 06:37:46','2021-07-20 06:37:46','',0,'https://healthyfoodrestaurant.in/cooking-as-a-whole-package-item-like-it-did-2/',0,'post','',0),(1795,1,'2021-07-22 06:34:43','2021-07-22 06:34:43','<!-- wp:paragraph -->\n<p>You\'ve got your announcement in mind, and now it\'s time to get it down in words to share with you…</p>\n<!-- /wp:paragraph -->\n\n<p>Eventually, you must also offer them attractive and competitive tourpackages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<figure class=\"wp-block-image size-full is-resized\"></figure>\n<p>Enabling Online Travel Booking and Reservations</p>\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<blockquote class=\"wp-block-quote is-style-default\">\n<p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p>\n<p><cite><strong>Steve Doe – </strong>Partner</cite></p>\n</blockquote>\n<hr />\n<p>Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<h2>H2:Focus On How You Want to Be</h2>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<h3>H3: Construct a Narrative</h3>\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<h4>H4: Tap Into Your Imagination</h4>\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<h5>H5: Embrace Not Knowing</h5>\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<h6>H6: Remember You Will Survive</h6>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"> </div>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th>Position</th>\n<th>Office</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Erica Romaguera</td>\n<td>Coach</td>\n<td>Audi</td>\n</tr>\n<tr>\n<td>Caleigh Jerde</td>\n<td>Lawyer</td>\n<td>Pizza Hut</td>\n</tr>\n<tr>\n<td>Lucas Schultz</td>\n<td>Librarian</td>\n<td>Burberry</td>\n</tr>\n<tr>\n<td>Carole Marvin</td>\n<td>Educator</td>\n<td>Starbucks</td>\n</tr>\n<tr>\n<td>Woodrow Nikolaus</td>\n<td>Massage Therapist</td>\n<td>Jack Daniel’s</td>\n</tr>\n</tbody>\n</table>\n</figure>','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here-3','','','2021-07-22 06:34:43','2021-07-22 06:34:43','',0,'https://healthyfoodrestaurant.in/interesting-ingredients-can-come-into-play-here-3/',0,'post','',0),(3041,1,'2021-07-26 21:35:08','2021-07-26 21:35:08','Our financial assistance boosts you to grow relations and loyalty between employee and market wherever you need anytime.\n\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here-2','','','2021-07-26 21:35:08','2021-07-26 21:35:08','',0,'https://healthyfoodrestaurant.in/interesting-ingredients-can-come-into-play-here-2/',0,'post','',0),(3046,1,'2021-07-26 22:45:35','2021-07-26 22:45:35','Rishi employee help you to take action for best strategy since it’s important for a company.If you find better idea it’s important for a company to take actions immediate otherwise companies growth will limited.\n\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','Cooking as a whole package item like it did','','publish','closed','closed','','cooking-as-a-whole-package-item-like-it-did','','','2021-07-26 22:45:35','2021-07-26 22:45:35','',0,'https://healthyfoodrestaurant.in/cooking-as-a-whole-package-item-like-it-did/',0,'post','',0),(3049,1,'2021-07-26 14:51:39','2021-07-26 14:51:39','<h5>Our financial assistance boosts you to grow relations and loyalty between employee and market wherever you need anytime.</h5>\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','The Restaurant Items That Wins Customers','','publish','closed','closed','','the-restaurant-items-that-wins-customers','','','2021-07-26 14:51:39','2021-07-26 14:51:39','',0,'https://healthyfoodrestaurant.in/the-restaurant-items-that-wins-customers/',0,'post','',0),(3059,1,'2021-07-29 11:58:00','2021-07-29 11:58:00','<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"wide\",\"id\":1091,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" class=\"wp-image-1091\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><p>Enabling Online Travel Booking and Reservations</p></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p><cite><strong>Steve Doe - </strong>Partner</cite></blockquote>\n<!-- /wp:quote -->\n\n<hr>\n<p><img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n\n<!-- wp:heading {\"level\":5} -->\n<h5>Displaying Company Information</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li><li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li><li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li><li>These will be crucial and highly beneficial for you later in the process.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>H2:Focus On How You Want to Be</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>H3: Construct a Narrative</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>H4: Tap Into Your Imagination</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>H5: Embrace Not Knowing</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":6} -->\n<h6>H6: Remember You Will Survive</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>H1: Heading 1</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>H2: Heading 2</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>H3: Heading 3</h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>H4: Heading 4</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>H5: Heading 5</h5>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":6} -->\n<h6>H6: Heading 6</h6>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":22} -->\n<div style=\"height:22px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>Displaying Company Information</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li><li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li><li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li><li>These will be crucial and highly beneficial for you later in the process.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table {\"className\":\"is-style-stripes\"} -->\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th><strong>Name</strong></th><th>Position</th><th>Office</th></tr></thead><tbody><tr><td>Erica Romaguera</td><td>Coach</td><td>Audi</td></tr><tr><td>Caleigh Jerde</td><td>Lawyer</td><td>Pizza Hut</td></tr><tr><td>Lucas Schultz</td><td>Librarian</td><td>Burberry</td></tr><tr><td>Carole Marvin</td><td>Educator</td><td>Starbucks</td></tr><tr><td>Woodrow Nikolaus</td><td>Massage Therapist</td><td>Jack Daniel’s</td></tr></tbody></table></figure>\n<!-- /wp:table -->','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here','','','2021-07-29 11:58:00','2021-07-29 11:58:00','',0,'https://healthyfoodrestaurant.in/interesting-ingredients-can-come-into-play-here/',0,'post','',0),(3080,1,'2021-11-22 10:31:54','2021-11-22 10:31:54','','brooke-lark-C1fMH2Vej8A-unsplash (1)','','inherit','closed','closed','','brooke-lark-c1fmh2vej8a-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3081,1,'2021-11-22 10:32:17','2021-11-22 10:32:17','','nikldn-HzVHlwvQlyw-unsplash (1)','','inherit','closed','closed','','nikldn-hzvhlwvqlyw-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3082,1,'2021-11-22 10:32:35','2021-11-22 10:32:35','','davide-cantelli-jpkfc5_d-DI-unsplash (1)','','inherit','closed','closed','','davide-cantelli-jpkfc5_d-di-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3086,1,'2021-11-22 10:35:15','2021-11-22 10:35:15','','davide-cantelli-jpkfc5_d-DI-unsplash (1)','','inherit','closed','closed','','davide-cantelli-jpkfc5_d-di-unsplash-1-2','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(3087,1,'2021-11-22 10:36:04','2021-11-22 10:36:04','','pirata-studio-film-qt6b5042lrw-unsplash (1) (1)','','inherit','closed','closed','','pirata-studio-film-qt6b5042lrw-unsplash-1-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(3129,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3129','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/3129/',1,'nav_menu_item','',0),(3131,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3131','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/3131/',5,'nav_menu_item','',0),(3132,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3132','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/3132/',2,'nav_menu_item','',0),(3134,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3134','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/3134/',3,'nav_menu_item','',0),(3138,1,'2021-11-22 12:07:58','2021-11-22 12:07:58','','logo-1','','inherit','closed','closed','','logo-1','','','2021-11-22 12:07:58','2021-11-22 12:07:58','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-1.png',0,'attachment','image/png',0),(3148,1,'2021-11-22 13:04:08','2021-11-22 13:04:08','','logo','','inherit','closed','closed','','logo-3','','','2021-11-22 13:04:08','2021-11-22 13:04:08','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-2.png',0,'attachment','image/png',0),(3150,1,'2021-11-22 13:07:54','2021-11-22 13:07:54','','logo-3','','inherit','closed','closed','','logo-3-2','','','2021-11-22 13:07:54','2021-11-22 13:07:54','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-3.png',0,'attachment','image/png',0),(3151,1,'2021-11-22 13:08:27','2021-11-22 13:08:27','','logo-4','','inherit','closed','closed','','logo-4','','','2021-11-22 13:08:27','2021-11-22 13:08:27','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-4.png',0,'attachment','image/png',0),(3163,1,'2021-11-22 14:46:32','2021-11-22 14:46:32','','cayla-1','','inherit','closed','closed','','cayla-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg',0,'attachment','image/jpeg',0),(3187,1,'2021-11-22 15:02:53','2021-11-22 15:02:53','','malin-strandvall-qw1hNqrMNwI-unsplash','','inherit','closed','closed','','malin-strandvall-qw1hnqrmnwi-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg',0,'attachment','image/jpeg',0),(3188,1,'2021-11-22 15:04:26','2021-11-22 15:04:26','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash','','inherit','closed','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg',0,'attachment','image/jpeg',0),(3189,1,'2021-11-22 15:05:24','2021-11-22 15:05:24','','cheesecake-stuffed-strawberries-500x500','','inherit','closed','closed','','cheesecake-stuffed-strawberries-500x500','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg',0,'attachment','image/jpeg',0),(3190,1,'2021-11-22 15:06:04','2021-11-22 15:06:04','','amirali-mirhashemian-4gmBIFraSuE-unsplash','','inherit','closed','closed','','amirali-mirhashemian-4gmbifrasue-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg',0,'attachment','image/jpeg',0),(3197,1,'2021-11-22 15:12:51','2021-11-22 15:12:51','','jason-leung-AUAuEgUxg5Q-unsplash','','inherit','closed','closed','','jason-leung-auaueguxg5q-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg',0,'attachment','image/jpeg',0),(3198,1,'2021-11-22 15:13:38','2021-11-22 15:13:38','','humphrey-muleba-YpPeBSqiQ-0-unsplash','','inherit','closed','closed','','humphrey-muleba-yppebsqiq-0-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg',0,'attachment','image/jpeg',0),(3199,1,'2021-11-22 15:14:40','2021-11-22 15:14:40','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash','','inherit','closed','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg',0,'attachment','image/jpeg',0),(3200,1,'2021-11-22 15:15:19','2021-11-22 15:15:19','','jennifer-burk-gwBcamFtPr4-unsplash','','inherit','closed','closed','','jennifer-burk-gwbcamftpr4-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg',0,'attachment','image/jpeg',0),(3201,1,'2021-11-22 15:16:02','2021-11-22 15:16:02','','tim-chow-MhpxHv0FKtE-unsplash','','inherit','closed','closed','','tim-chow-mhpxhv0fkte-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg',0,'attachment','image/jpeg',0),(3339,1,'2021-11-24 11:02:23','2021-11-24 11:02:23','','screenshot--1','','inherit','closed','closed','','screenshot-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-1.jpg',0,'attachment','image/jpeg',0),(3340,1,'2021-11-24 11:03:44','2021-11-24 11:03:44','','screenshot--2','','inherit','closed','closed','','screenshot-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-2.jpg',0,'attachment','image/jpeg',0),(3359,1,'2021-11-24 11:11:36','2021-11-24 11:11:36','','edgar-castrejon-1SPu0KT-Ejg-unsplash (1)','','inherit','closed','closed','','edgar-castrejon-1spu0kt-ejg-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3364,1,'2021-11-24 11:15:26','2021-11-24 11:15:26','','eaters-collective-12eHC6FxPyg-unsplash','','inherit','closed','closed','','eaters-collective-12ehc6fxpyg-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/eaters-collective-12eHC6FxPyg-unsplash.jpg',0,'attachment','image/jpeg',0),(3462,1,'2021-11-24 15:06:58','2021-11-24 15:06:58','','brooke-cagle-8jp-6SjVibM-unsplash','','inherit','closed','closed','','brooke-cagle-8jp-6sjvibm-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg',0,'attachment','image/jpeg',0),(3463,1,'2021-11-24 15:07:39','2021-11-24 15:07:39','','elevate-iv6yNy7oBqQ-unsplash','','inherit','closed','closed','','elevate-iv6yny7obqq-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg',0,'attachment','image/jpeg',0),(3464,1,'2021-11-24 15:08:05','2021-11-24 15:08:05','','febrian-zakaria-SiQgni-cqFg-unsplash-1','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3704,1,'2021-11-24 17:31:40','2021-11-24 17:31:40','','spencer-russell-C7FB7H-sXJs-unsplash','','inherit','closed','closed','','spencer-russell-c7fb7h-sxjs-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg',0,'attachment','image/jpeg',0),(3705,1,'2021-11-24 17:31:53','2021-11-24 17:31:53','','552963-PK36W8-345','','inherit','closed','closed','','552963-pk36w8-345','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/552963-PK36W8-345.jpg',0,'attachment','image/jpeg',0),(3706,1,'2021-11-24 17:32:02','2021-11-24 17:32:02','','2899356','','inherit','closed','closed','','2899356','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/2899356.jpg',0,'attachment','image/jpeg',0),(3707,1,'2021-11-24 17:32:11','2021-11-24 17:32:11','','alexandra-lammerink-1','','inherit','closed','closed','','alexandra-lammerink-1-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/alexandra-lammerink-1-1.jpg',0,'attachment','image/jpeg',0),(3708,1,'2021-11-24 17:32:37','2021-11-24 17:32:37','','christina-wocintechchat-com-SJvDxw0azqw-unsplash','','inherit','closed','closed','','christina-wocintechchat-com-sjvdxw0azqw-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg',0,'attachment','image/jpeg',0),(3709,1,'2021-11-24 17:33:29','2021-11-24 17:33:29','','linkedin-sales-navigator-pAtA8xe_iVM-unsplash','','inherit','closed','closed','','linkedin-sales-navigator-pata8xe_ivm-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg',0,'attachment','image/jpeg',0),(3710,1,'2021-11-24 17:34:20','2021-11-24 17:34:20','','michael-dam-mEZ3PoFGs_k-unsplash','','inherit','closed','closed','','michael-dam-mez3pofgs_k-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg',0,'attachment','image/jpeg',0),(3711,1,'2021-11-24 17:35:51','2021-11-24 17:35:51','','portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255','','inherit','closed','closed','','portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg',0,'attachment','image/jpeg',0),(3789,1,'2021-11-24 18:13:10','2021-11-24 18:13:10','','emiliano-vittoriosi-OFismyezPnY-unsplash','','inherit','closed','closed','','emiliano-vittoriosi-ofismyezpny-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',749,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg',0,'attachment','image/jpeg',0),(3878,1,'2021-11-25 04:34:17','2021-11-25 04:34:17','','jason-leung-AUAuEgUxg-5','','inherit','closed','closed','','jason-leung-auaueguxg-5','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',749,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg-5.jpg',0,'attachment','image/jpeg',0),(4079,1,'2021-11-25 08:17:40','2021-11-25 08:17:40','','img','','inherit','closed','closed','','img','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/img.jpg',0,'attachment','image/jpeg',0),(4080,1,'2021-11-25 08:18:41','2021-11-25 08:18:41','','jason-leung-i-LbNM7B66I-unsplash','','inherit','closed','closed','','jason-leung-i-lbnm7b66i-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg',0,'attachment','image/jpeg',0),(4081,1,'2021-11-25 08:25:29','2021-11-25 08:25:29','[text* Your-full-name placeholder \"Full Name\"]\r\n\r\n[number* your-number placeholder \"Phone Number\"]\r\n\r\n[email* your-email-address placeholder \"Your Email Address\"]\r\n\r\n[textarea* your-message placeholder \"Message\"]\r\n\r\n[submit \"Send Message\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','contact form','','publish','closed','closed','','contact-form','','','2021-11-25 08:25:29','2021-11-25 08:25:29','',0,'https://healthyfoodrestaurant.in/?post_type=wpcf7_contact_form&p=4081',0,'wpcf7_contact_form','',0),(4106,1,'2021-11-25 10:18:16','2021-11-25 10:18:16','','taylor-kiser-POFG828-GQc-unsplash (1)','','inherit','closed','closed','','taylor-kiser-pofg828-gqc-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg',0,'attachment','image/jpeg',0),(4209,1,'2021-11-25 11:18:38','2021-11-25 11:18:38','','Logo','','inherit','closed','closed','','logo-5','','','2021-11-25 11:18:38','2021-11-25 11:18:38','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Logo-5.png',0,'attachment','image/png',0),(4210,1,'2021-11-25 11:20:51','2021-11-25 11:20:51','','Logo-Whhite','','inherit','closed','closed','','logo-whhite','','','2021-11-25 11:20:51','2021-11-25 11:20:51','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Logo-Whhite.png',0,'attachment','image/png',0),(4211,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','Default Kit','','publish','closed','closed','','default-kit','','','2023-10-14 07:18:36','2023-10-14 07:18:36','',0,'https://healthyfoodrestaurant.in/?elementor_library=default-kit',0,'elementor_library','',0),(4221,1,'2021-11-25 11:52:30','2021-11-25 11:52:30','','Logo','','inherit','closed','closed','','logo-6','','','2021-11-25 11:52:30','2021-11-25 11:52:30','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Logo-6.png',0,'attachment','image/png',0),(4250,1,'2021-11-25 12:45:19','2021-11-25 12:45:19','','alex-munsell-auIbTAcSH-21','','inherit','closed','closed','','alex-munsell-auibtacsh-21','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1794,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/alex-munsell-auIbTAcSH-21.jpg',0,'attachment','image/jpeg',0),(4252,1,'2021-11-25 12:54:01','2021-11-25 12:54:01','','brooke-lark-oaz0raysASk-unsplash (2) (1)','','inherit','closed','closed','','brooke-lark-oaz0raysask-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',3049,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4253,1,'2021-11-25 12:54:41','2021-11-25 12:54:41','','joseph-gonzalez-fdlZBWIP0aM-unsplash (2) (1)','','inherit','closed','closed','','joseph-gonzalez-fdlzbwip0am-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1795,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4255,1,'2021-11-25 12:55:52','2021-11-25 12:55:52','','stil-u2Lp8tXIcjw-unsplash (2) (1)','','inherit','closed','closed','','stil-u2lp8txicjw-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1794,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4314,1,'2021-11-25 14:41:02','2021-11-25 14:41:02','','brooke-cagle-1','','inherit','closed','closed','','brooke-cagle-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/brooke-cagle-1.jpg',0,'attachment','image/jpeg',0),(4315,1,'2021-11-25 14:42:32','2021-11-25 14:42:32','','elevate-iv-1','','inherit','closed','closed','','elevate-iv-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/elevate-iv-1.jpg',0,'attachment','image/jpeg',0),(4316,1,'2021-11-25 14:42:33','2021-11-25 14:42:33','','febrian-zakaria-SiQgni-cqFg-unsplash-3','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash-3','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg',0,'attachment','image/jpeg',0),(4317,1,'2021-11-25 14:42:35','2021-11-25 14:42:35','','petr-sevcovic-e5Q5vWO55uU-unsplash (1)','','inherit','closed','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg',0,'attachment','image/jpeg',0),(4318,1,'2021-11-25 14:42:36','2021-11-25 14:42:36','','screenshot--3','','inherit','closed','closed','','screenshot-3','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-3.jpg',0,'attachment','image/jpeg',0),(4319,1,'2021-11-25 14:42:37','2021-11-25 14:42:37','','screenshot--4','','inherit','closed','closed','','screenshot-4-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-1.jpg',0,'attachment','image/jpeg',0),(4532,1,'2021-11-28 06:07:11','2021-11-28 06:07:11','','alex-munsell-auIbTAcSH6E-unsplash','','inherit','closed','closed','','alex-munsell-auibtacsh6e-unsplash-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg',0,'attachment','image/jpeg',0),(4695,1,'2021-11-29 04:34:08','2021-11-29 04:34:08','','Path 24974','','inherit','closed','closed','','path-24974','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Path-24974.svg',0,'attachment','image/svg+xml',0),(4697,1,'2021-11-29 04:37:56','2021-11-29 04:37:56','','Path 24974','','inherit','closed','closed','','path-24974-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Path-24974-1.svg',0,'attachment','image/svg+xml',0),(4698,2,'2023-09-07 13:48:03','2023-09-07 13:48:03','','Blog','','inherit','closed','closed','','1561-revision-v1','','','2023-09-07 13:48:03','2023-09-07 13:48:03','',1561,'https://healthyfoodrestaurant.in/?p=4698',0,'revision','',0),(4700,2,'2023-09-07 13:52:27','2023-09-07 13:52:27','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.51513247100506\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-07 13:52:27\"\n    }\n}','','','publish','closed','closed','','7964622d-b711-4147-9b8a-e795d37f13b0','','','2023-09-07 13:52:27','2023-09-07 13:52:27','',0,'https://healthyfoodrestaurant.in/7964622d-b711-4147-9b8a-e795d37f13b0/',0,'customize_changeset','',0),(4701,2,'2023-09-07 13:52:27','2023-09-07 13:52:27','','Default Kit','','inherit','closed','closed','','4211-revision-v1','','','2023-09-07 13:52:27','2023-09-07 13:52:27','',4211,'https://healthyfoodrestaurant.in/?p=4701',0,'revision','',0),(4702,2,'2023-09-08 02:00:22','2023-09-08 02:00:22','{\n    \"rishi::layout_style\": {\n        \"value\": \"no-sidebar\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:00:22\"\n    }\n}','','','publish','closed','closed','','a519d2d0-4e3a-4d7f-9df9-9969a8edaf0a','','','2023-09-08 02:00:22','2023-09-08 02:00:22','',0,'https://healthyfoodrestaurant.in/a519d2d0-4e3a-4d7f-9df9-9969a8edaf0a/',0,'customize_changeset','',0),(4703,2,'2023-09-08 02:00:50','2023-09-08 02:00:50','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:00:50\"\n    }\n}','','','publish','closed','closed','','b0e77634-5d3e-461f-992f-e5832ffe2a49','','','2023-09-08 02:00:50','2023-09-08 02:00:50','',0,'https://healthyfoodrestaurant.in/b0e77634-5d3e-461f-992f-e5832ffe2a49/',0,'customize_changeset','',0),(4704,2,'2023-09-08 02:01:24','2023-09-08 02:01:24','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    },\n    \"nav_menu_item[3130]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    },\n    \"nav_menu_item[1563]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    }\n}','','','publish','closed','closed','','9d07ae9a-032a-461d-aac3-c9bb728f7c8b','','','2023-09-08 02:01:24','2023-09-08 02:01:24','',0,'https://healthyfoodrestaurant.in/9d07ae9a-032a-461d-aac3-c9bb728f7c8b/',0,'customize_changeset','',0),(4705,2,'2023-09-08 02:03:32','2023-09-08 02:03:32','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"widget-area-1\",\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"copyright:copyright_text\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:03:32\"\n    }\n}','','','publish','closed','closed','','fdeca5cb-ba12-412b-8fc8-f9e73d76938a','','','2023-09-08 02:03:32','2023-09-08 02:03:32','',0,'https://healthyfoodrestaurant.in/?p=4705',0,'customize_changeset','',0),(4706,2,'2023-09-08 02:03:54','2023-09-08 02:03:54','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"__should_refresh__\": false,\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"widget-area-1\",\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"copyright:copyright_text\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:03:54\"\n    }\n}','','','publish','closed','closed','','488ebb9c-9c6a-4e69-a349-5c59745c5bbd','','','2023-09-08 02:03:54','2023-09-08 02:03:54','',0,'https://healthyfoodrestaurant.in/488ebb9c-9c6a-4e69-a349-5c59745c5bbd/',0,'customize_changeset','',0),(4708,2,'2023-09-08 02:07:34','2023-09-08 02:07:34','{\n    \"rishi::rootTypography\": {\n        \"value\": {\n            \"family\": \"Averia Gruesa Libre\",\n            \"variation\": \"n4\",\n            \"size\": {\n                \"desktop\": \"18px\",\n                \"tablet\": \"18px\",\n                \"mobile\": \"16px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.75\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h1Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n8\",\n            \"size\": {\n                \"desktop\": \"50px\",\n                \"tablet\": \"50px\",\n                \"mobile\": \"36px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h2Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n8\",\n            \"size\": {\n                \"desktop\": \"45px\",\n                \"tablet\": \"45px\",\n                \"mobile\": \"30px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h3Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"35px\",\n                \"tablet\": \"35px\",\n                \"mobile\": \"28px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h4Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"30px\",\n                \"tablet\": \"30px\",\n                \"mobile\": \"24px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h5Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"24px\",\n                \"tablet\": \"24px\",\n                \"mobile\": \"22px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h6Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"20px\",\n                \"tablet\": \"20px\",\n                \"mobile\": \"18px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    }\n}','','','publish','closed','closed','','0871fee2-dbb4-4c4e-9b39-5ceafd218183','','','2023-09-08 02:07:34','2023-09-08 02:07:34','',0,'https://healthyfoodrestaurant.in/?p=4708',0,'customize_changeset','',0),(4712,2,'2023-09-08 02:19:05','2023-09-08 02:19:05','','interior','','inherit','open','closed','','interior','','','2023-09-08 02:19:05','2023-09-08 02:19:05','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/interior.jpg',0,'attachment','image/jpeg',0),(4713,2,'2023-09-08 02:19:39','2023-09-08 02:19:39','','food','','inherit','open','closed','','food','','','2023-09-08 02:19:39','2023-09-08 02:19:39','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/food.jpg',0,'attachment','image/jpeg',0),(4735,2,'2023-09-09 10:14:17','2023-09-09 10:14:17','','daaal','','inherit','open','closed','','daaal','','','2023-09-09 10:14:42','2023-09-09 10:14:42','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg',0,'attachment','image/jpeg',0),(4736,2,'2023-09-09 10:15:12','2023-09-09 10:15:12','','sbzi alo','','inherit','open','closed','','sbzi-alo','','','2023-09-09 10:15:35','2023-09-09 10:15:35','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/sbzi-alo.jpg',0,'attachment','image/jpeg',0),(4737,2,'2023-09-09 10:16:12','2023-09-09 10:16:12','','thali','','inherit','open','closed','','thali','','','2023-09-09 10:17:44','2023-09-09 10:17:44','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg',0,'attachment','image/jpeg',0),(4744,2,'2023-09-15 01:39:02','2023-09-15 01:39:02','','menu','','inherit','open','closed','','menu-2','','','2023-09-15 01:39:02','2023-09-15 01:39:02','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg',0,'attachment','image/jpeg',0),(4745,2,'2023-09-15 01:40:02','2023-09-15 01:40:02','','gravy','','inherit','open','closed','','gravy','','','2023-09-15 01:40:02','2023-09-15 01:40:02','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/gravy.jpg',0,'attachment','image/jpeg',0),(4746,2,'2023-09-15 01:42:10','2023-09-15 01:42:10','','khana','','inherit','open','closed','','khana','','','2023-09-15 01:42:10','2023-09-15 01:42:10','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg',0,'attachment','image/jpeg',0),(4756,2,'2023-09-15 02:06:58','2023-09-15 02:06:58','{\n    \"rishi::custom_logo\": {\n        \"value\": 4758,\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:05:41\"\n    },\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"142\",\n                                    \"tablet\": \"142\",\n                                    \"mobile\": \"142\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logo_title_layout\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:06:49\"\n    }\n}','','','publish','closed','closed','','41428851-6bc0-4433-846d-bb5952247065','','','2023-09-15 02:06:58','2023-09-15 02:06:58','',0,'https://healthyfoodrestaurant.in/?p=4756',0,'customize_changeset','',0),(4758,2,'2023-09-15 02:04:15','2023-09-15 02:04:15','','7776956','','inherit','open','closed','','7776956','','','2023-09-15 02:06:27','2023-09-15 02:06:27','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/7776956.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `ajj_posts` VALUES (4759,2,'2023-09-15 02:08:25','2023-09-15 02:08:25','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"116\",\n                                    \"tablet\": \"116\",\n                                    \"mobile\": \"116\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:08:25\"\n    }\n}','','','publish','closed','closed','','e26eea68-640f-4385-97c1-80a362c55b1c','','','2023-09-15 02:08:25','2023-09-15 02:08:25','',0,'https://healthyfoodrestaurant.in/e26eea68-640f-4385-97c1-80a362c55b1c/',0,'customize_changeset','',0),(4760,2,'2023-09-15 02:08:59','2023-09-15 02:08:59','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"116\",\n                                    \"tablet\": \"116\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:08:59\"\n    }\n}','','','publish','closed','closed','','55d41023-4a40-4a77-80c1-d3440f114d2d','','','2023-09-15 02:08:59','2023-09-15 02:08:59','',0,'https://healthyfoodrestaurant.in/55d41023-4a40-4a77-80c1-d3440f114d2d/',0,'customize_changeset','',0),(4761,2,'2023-09-15 02:09:49','2023-09-15 02:09:49','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:09:49\"\n    }\n}','','','publish','closed','closed','','ae28c34d-04ed-4097-aee1-32a7d82e1acc','','','2023-09-15 02:09:49','2023-09-15 02:09:49','',0,'https://healthyfoodrestaurant.in/ae28c34d-04ed-4097-aee1-32a7d82e1acc/',0,'customize_changeset','',0),(4762,2,'2023-09-15 02:11:57','2023-09-15 02:11:57','{\n    \"widget_block[7]\": {\n        \"value\": {\n            \"raw_instance\": {\n                \"content\": \"<!-- wp:gallery {\\\"linkTo\\\":\\\"none\\\",\\\"sizeSlug\\\":\\\"full\\\",\\\"align\\\":\\\"center\\\"} -->\\n<figure class=\\\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped\\\"><!-- wp:image {\\\"id\\\":3151,\\\"sizeSlug\\\":\\\"full\\\",\\\"linkDestination\\\":\\\"none\\\"} -->\\n<figure class=\\\"wp-block-image size-full\\\"><img src=\\\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/logo-4.png\\\" alt=\\\"\\\" class=\\\"wp-image-3151\\\"/></figure>\\n<!-- /wp:image --></figure>\\n<!-- /wp:gallery -->\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"sidebars_widgets[footer-one]\": {\n        \"value\": [\n            \"block-7\",\n            \"block-9\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5269002827327034\": \"update\",\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false,\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": true\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"widget_block[9]\": {\n        \"value\": {\n            \"raw_instance\": {\n                \"content\": \"<!-- wp:heading {\\\"textAlign\\\":\\\"center\\\",\\\"level\\\":4} -->\\n<h4 class=\\\"wp-block-heading has-text-align-center\\\">Healthy Food Restaurant</h4>\\n<!-- /wp:heading -->\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    }\n}','','','publish','closed','closed','','8642d21e-36f7-4dc6-aff8-5f04a9c793ea','','','2023-09-15 02:11:57','2023-09-15 02:11:57','',0,'https://healthyfoodrestaurant.in/8642d21e-36f7-4dc6-aff8-5f04a9c793ea/',0,'customize_changeset','',0),(4763,2,'2023-10-10 02:30:03','2023-10-10 02:30:03','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"menu\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"socials:footer_socials\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-10 02:30:03\"\n    }\n}','','','publish','closed','closed','','0f34b657-1e0c-43c3-8648-3df2d13bfa45','','','2023-10-10 02:30:03','2023-10-10 02:30:03','',0,'https://healthyfoodrestaurant.in/0f34b657-1e0c-43c3-8648-3df2d13bfa45/',0,'customize_changeset','',0),(4764,2,'2023-10-10 02:30:34','2023-10-10 02:30:34','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"menu\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-10 02:30:34\"\n    }\n}','','','publish','closed','closed','','1d6a4375-4c46-4fd2-982e-0ca30bba7e3d','','','2023-10-10 02:30:34','2023-10-10 02:30:34','',0,'https://healthyfoodrestaurant.in/1d6a4375-4c46-4fd2-982e-0ca30bba7e3d/',0,'customize_changeset','',0),(4769,2,'2023-10-14 06:45:19','2023-10-14 06:45:19','','coffe','','inherit','open','closed','','coffe','','','2023-10-14 06:45:19','2023-10-14 06:45:19','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/10/coffe.jpg',0,'attachment','image/jpeg',0),(4770,2,'2023-10-14 06:46:11','2023-10-14 06:46:11','','minestrone soup','','inherit','open','closed','','minestrone-soup','','','2023-10-14 06:46:11','2023-10-14 06:46:11','',106,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/10/minestrone-soup.jpg',0,'attachment','image/jpeg',0),(4775,2,'2023-10-14 06:51:44','2023-10-14 06:51:44','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:51:44','2023-10-14 06:51:44','',106,'https://healthyfoodrestaurant.in/?p=4775',0,'revision','',0),(4776,2,'2023-10-14 06:51:44','2023-10-14 06:51:44','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:51:44','2023-10-14 06:51:44','',106,'https://healthyfoodrestaurant.in/?p=4776',0,'revision','',0),(4777,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/?p=4777',0,'revision','',0),(4778,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/?p=4778',0,'revision','',0);
INSERT INTO `ajj_posts` VALUES (4779,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/?p=4779',0,'revision','',0),(4780,2,'2023-10-14 06:55:50','2023-10-14 06:55:50','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.09539503909781599\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:54:38\"\n    },\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false,\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": true\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:55:50\"\n    }\n}','','','publish','closed','closed','','3abda75f-d045-45be-a60f-6d7a4e475206','','','2023-10-14 06:55:50','2023-10-14 06:55:50','',0,'https://healthyfoodrestaurant.in/?p=4780',0,'customize_changeset','',0),(4781,2,'2023-10-14 06:56:12','2023-10-14 06:56:12','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:12\"\n    },\n    \"rishi::page_sidebar_layout\": {\n        \"value\": \"no-sidebar\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:12\"\n    }\n}','','','publish','closed','closed','','6a0cd8c5-f4d9-4a69-a910-429dfb0e8a59','','','2023-10-14 06:56:12','2023-10-14 06:56:12','',0,'https://healthyfoodrestaurant.in/6a0cd8c5-f4d9-4a69-a910-429dfb0e8a59/',0,'customize_changeset','',0),(4782,2,'2023-10-14 06:56:37','2023-10-14 06:56:37','{\n    \"rishi::page_sidebar_layout\": {\n        \"value\": \"centered\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:37\"\n    }\n}','','','publish','closed','closed','','7fb119f9-def8-4906-95d3-c74f40a2c0e3','','','2023-10-14 06:56:37','2023-10-14 06:56:37','',0,'https://healthyfoodrestaurant.in/7fb119f9-def8-4906-95d3-c74f40a2c0e3/',0,'customize_changeset','',0),(4783,2,'2023-10-14 06:57:05','2023-10-14 06:57:05','{\n    \"rishi::page_layout\": {\n        \"value\": \"content_boxed\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:57:05\"\n    }\n}','','','publish','closed','closed','','3acf65df-fe9d-4947-8f31-faaf39b8f1b1','','','2023-10-14 06:57:05','2023-10-14 06:57:05','',0,'https://healthyfoodrestaurant.in/3acf65df-fe9d-4947-8f31-faaf39b8f1b1/',0,'customize_changeset','',0),(4784,2,'2023-10-14 06:57:11','2023-10-14 06:57:11','{\n    \"rishi::page_layout_streched_ed\": {\n        \"value\": \"yes\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:57:11\"\n    }\n}','','','publish','closed','closed','','28e9a222-575d-4aef-851c-6b6ae0809411','','','2023-10-14 06:57:11','2023-10-14 06:57:11','',0,'https://healthyfoodrestaurant.in/28e9a222-575d-4aef-851c-6b6ae0809411/',0,'customize_changeset','',0),(4785,2,'2023-10-14 06:59:16','2023-10-14 06:59:16','https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/cropped-7776956.jpg','cropped-7776956.jpg','','inherit','open','closed','','cropped-7776956-jpg','','','2023-10-14 06:59:16','2023-10-14 06:59:16','',0,'https://healthyfoodrestaurant.in/wp-content/uploads/2023/09/cropped-7776956.jpg',0,'attachment','image/jpeg',0),(4786,2,'2023-10-14 06:59:25','2023-10-14 06:59:25','{\n    \"site_icon\": {\n        \"value\": 4785,\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:59:25\"\n    }\n}','','','publish','closed','closed','','3e465b9c-6fbf-43bf-b0a2-a589cb2ec394','','','2023-10-14 06:59:25','2023-10-14 06:59:25','',0,'https://healthyfoodrestaurant.in/3e465b9c-6fbf-43bf-b0a2-a589cb2ec394/',0,'customize_changeset','',0),(4787,2,'2023-10-14 07:08:31','2023-10-14 07:08:31','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"care@healthyfoodrestaurant.in\",\n                                        \"link\": \"mailto:care@healthyfoodrestaurant.in\",\n                                        \"__id\": \"Co4AamBXHUquF7YtD2b6G\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"+ 91 9628-4444-58\",\n                                        \"link\": \"tel:+ 91 9628-4444-58\",\n                                        \"__id\": \"qvMQqubw-Yy7a2qR3gm_Y\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:08:31\"\n    }\n}','','','publish','closed','closed','','29cb2e81-37ae-4844-800d-0a7e34953f58','','','2023-10-14 07:08:31','2023-10-14 07:08:31','',0,'https://healthyfoodrestaurant.in/?p=4787',0,'customize_changeset','',0),(4788,2,'2023-10-14 07:11:56','2023-10-14 07:11:56','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"care@healthyfoodrestaurant.in\",\n                                        \"link\": \"mailto:care@healthyfoodrestaurant.in\",\n                                        \"__id\": \"Co4AamBXHUquF7YtD2b6G\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"+ 91 9628-4444-58\",\n                                        \"link\": \"tel:+ 91 9628-4444-58\",\n                                        \"__id\": \"qvMQqubw-Yy7a2qR3gm_Y\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address: \",\n                                        \"content\": \"Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"Healthy Food Restaurant\",\n                                        \"link\": \"https://healthyfoodrestaurant.in\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:11:56\"\n    }\n}','','','publish','closed','closed','','17f48993-1308-4235-a5da-e35d866da64f','','','2023-10-14 07:11:56','2023-10-14 07:11:56','',0,'https://healthyfoodrestaurant.in/17f48993-1308-4235-a5da-e35d866da64f/',0,'customize_changeset','',0),(4789,2,'2023-10-14 07:18:06','2023-10-14 07:18:06','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.6890474456357631\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:06\"\n    },\n    \"rishi::rootTypography\": {\n        \"value\": {\n            \"family\": \"Caudex\",\n            \"variation\": \"n4\",\n            \"size\": {\n                \"desktop\": \"18px\",\n                \"tablet\": \"18px\",\n                \"mobile\": \"16px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.75\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:06\"\n    }\n}','','','publish','closed','closed','','80691eca-47a0-484f-92f9-4aebfee6b7d8','','','2023-10-14 07:18:06','2023-10-14 07:18:06','',0,'https://healthyfoodrestaurant.in/80691eca-47a0-484f-92f9-4aebfee6b7d8/',0,'customize_changeset','',0),(4790,2,'2023-10-14 07:18:36','2023-10-14 07:18:36','{\n    \"rishi::layout\": {\n        \"value\": \"content_boxed\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:36\"\n    }\n}','','','publish','closed','closed','','7b6823a4-5b9f-4f08-b7ae-21c2b7e8e6d0','','','2023-10-14 07:18:36','2023-10-14 07:18:36','',0,'https://healthyfoodrestaurant.in/7b6823a4-5b9f-4f08-b7ae-21c2b7e8e6d0/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `ajj_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_term_relationships`
--

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

--
-- Dumping data for table `ajj_term_relationships`
--

LOCK TABLES `ajj_term_relationships` WRITE;
/*!40000 ALTER TABLE `ajj_term_relationships` DISABLE KEYS */;
INSERT INTO `ajj_term_relationships` VALUES (1,1,0),(85,7,0),(103,7,0),(120,9,0),(121,9,0),(755,9,0),(756,9,0),(757,9,0),(1794,3,0),(1794,6,0),(1795,3,0),(1795,6,0),(3041,3,0),(3041,6,0),(3046,3,0),(3046,6,0),(3049,3,0),(3049,6,0),(3059,3,0),(3059,6,0),(3129,8,0),(3131,8,0),(3132,8,0),(3134,8,0);
/*!40000 ALTER TABLE `ajj_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_term_taxonomy`
--

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

--
-- Dumping data for table `ajj_term_taxonomy`
--

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

--
-- Table structure for table `ajj_termmeta`
--

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

--
-- Dumping data for table `ajj_termmeta`
--

LOCK TABLES `ajj_termmeta` WRITE;
/*!40000 ALTER TABLE `ajj_termmeta` DISABLE KEYS */;
INSERT INTO `ajj_termmeta` VALUES (1,2,'_demo_importer_plus_imported_term','1'),(2,3,'_demo_importer_plus_imported_term','1'),(3,4,'_demo_importer_plus_imported_term','1'),(4,5,'_demo_importer_plus_imported_term','1'),(5,6,'ba_category_image_id',''),(6,6,'_demo_importer_plus_imported_term','1'),(7,7,'_demo_importer_plus_imported_term','1'),(8,8,'_demo_importer_plus_imported_term','1'),(9,9,'_demo_importer_plus_imported_term','1');
/*!40000 ALTER TABLE `ajj_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_terms`
--

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

--
-- Dumping data for table `ajj_terms`
--

LOCK TABLES `ajj_terms` WRITE;
/*!40000 ALTER TABLE `ajj_terms` DISABLE KEYS */;
INSERT INTO `ajj_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Business, Strategy','business-strategy',0),(3,'Healthy','healthy',0),(4,'Organization','organization',0),(5,'Retail','retail',0),(6,'Tasty','tasty',0),(7,'page','page',0),(8,'footer menu','footer-menu',0),(9,'Menu 1','menu-1',0);
/*!40000 ALTER TABLE `ajj_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_usermeta`
--

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

--
-- Dumping data for table `ajj_usermeta`
--

LOCK TABLES `ajj_usermeta` WRITE;
/*!40000 ALTER TABLE `ajj_usermeta` DISABLE KEYS */;
INSERT INTO `ajj_usermeta` VALUES (1,1,'nickname','arpitkmaurya1'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'ajj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'ajj_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'jetpack_tracks_anon_id','jetpack:hddC6Lfu0eI4J2T7WTBsgpyr'),(17,1,'session_tokens','a:1:{s:64:\"5586ab03d1db1bf964b1dd5d50b265c52143ffc099a52c78cad57d9c699afb65\";a:4:{s:10:\"expiration\";i:1701140930;s:2:\"ip\";s:14:\"171.76.253.201\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36\";s:5:\"login\";i:1700968130;}}'),(18,1,'ajj_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:9;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:13:\"arpitkmaurya1\";s:9:\"user_pass\";s:34:\"$P$Bnrmnq7pL0b84mrMbzJi79/lIVMa/y0\";s:13:\"user_nicename\";s:13:\"arpitkmaurya1\";s:10:\"user_email\";s:28:\"arpitkmaurya1@protonmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2023-09-07 01:48:25\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"arpitkmaurya1\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:16:\"ajj_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(19,2,'nickname','healthyfoodrestaurant'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'ajj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'ajj_user_level','10'),(32,2,'dismissed_wp_pointers',''),(34,1,'ajj_dashboard_quick_press_last_post_id','6'),(35,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"27.60.100.0\";}'),(36,2,'session_tokens','a:1:{s:64:\"0f7b5fabe45b0cd32b0f7f1d4e734ccf7c8aae37fa6e969eb1f56adf10494b52\";a:4:{s:10:\"expiration\";i:1698114365;s:2:\"ip\";s:14:\"42.105.211.242\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\";s:5:\"login\";i:1696904765;}}'),(38,2,'ajj_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:\"2023-09-15T02:09:57.076Z\";s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}}'),(40,2,'elementor_introduction','a:1:{s:27:\"ai-get-started-announcement\";b:1;}'),(41,2,'announcements_user_counter','1'),(42,2,'ajj_user-settings','editor=tinymce&libraryContent=browse'),(43,2,'ajj_user-settings-time','1694139647'),(44,2,'nfd_sp_last_check','1694743828'),(45,2,'ajj_dashboard_quick_press_last_post_id','4767'),(46,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"42.105.213.0\";}'),(47,2,'jetpack_tracks_anon_id','jetpack:yBzISlR8ai7PJHfcbhOJMw+3');
/*!40000 ALTER TABLE `ajj_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_users`
--

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

--
-- Dumping data for table `ajj_users`
--

LOCK TABLES `ajj_users` WRITE;
/*!40000 ALTER TABLE `ajj_users` DISABLE KEYS */;
INSERT INTO `ajj_users` VALUES (1,'arpitkmaurya1','$P$Bnrmnq7pL0b84mrMbzJi79/lIVMa/y0','arpitkmaurya1','arpitkmaurya1@protonmail.com','','2023-09-07 01:48:25','',0,'arpitkmaurya1'),(2,'healthyfoodrestaurant','$P$B.YH1SNPGoSHRLYiTowL8El6FGjjIq.','healthyfoodrestaurant','care@healthyfoodrestaurant.in','http://healthyfoodrestaurant.in','2023-09-07 01:54:30','1694051670:$P$B84a1lKx6EA46sIfZXE1RWAUSZh5qt.',0,'healthyfoodrestaurant');
/*!40000 ALTER TABLE `ajj_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_yoast_indexable`
--

DROP TABLE IF EXISTS `ajj_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_yoast_indexable`
--

LOCK TABLES `ajj_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `ajj_yoast_indexable` DISABLE KEYS */;
INSERT INTO `ajj_yoast_indexable` VALUES (1,'https://healthyfoodrestaurant.in/','33:629228ba52894ac3cdbc99ce97db1b84',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2023-09-07 01:48:44','2023-09-06 20:18:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-07 01:48:25','2023-09-07 01:48:25',NULL),(2,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-07 01:48:56','2023-09-06 20:18:56',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `ajj_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `ajj_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_yoast_indexable_hierarchy`
--

LOCK TABLES `ajj_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `ajj_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `ajj_yoast_indexable_hierarchy` VALUES (1,0,0,1);
/*!40000 ALTER TABLE `ajj_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_yoast_migrations`
--

DROP TABLE IF EXISTS `ajj_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `ajj_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_yoast_migrations`
--

LOCK TABLES `ajj_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `ajj_yoast_migrations` DISABLE KEYS */;
INSERT INTO `ajj_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `ajj_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ajj_yoast_primary_term`
--

DROP TABLE IF EXISTS `ajj_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_yoast_primary_term`
--

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

--
-- Table structure for table `ajj_yoast_seo_links`
--

DROP TABLE IF EXISTS `ajj_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ajj_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ajj_yoast_seo_links`
--

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

--
-- Table structure for table `staging_ajj_ce4wp_contacts`
--

DROP TABLE IF EXISTS `staging_ajj_ce4wp_contacts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_ce4wp_contacts` (
  `contact_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `email` varchar(200) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `first_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `last_name` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `telephone` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  `consent` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT '',
  PRIMARY KEY (`contact_id`),
  UNIQUE KEY `email` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_ce4wp_contacts`
--

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

--
-- Table structure for table `staging_ajj_commentmeta`
--

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

--
-- Dumping data for table `staging_ajj_commentmeta`
--

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

--
-- Table structure for table `staging_ajj_comments`
--

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

--
-- Dumping data for table `staging_ajj_comments`
--

LOCK TABLES `staging_ajj_comments` WRITE;
/*!40000 ALTER TABLE `staging_ajj_comments` DISABLE KEYS */;
INSERT INTO `staging_ajj_comments` VALUES (1,1,'A WordPress Commenter','wapuu@wordpress.example','https://wordpress.org/','','2023-09-07 01:48:25','2023-09-07 01:48:25','Hi, this is a comment.\nTo get started with moderating, editing, and deleting comments, please visit the Comments screen in the dashboard.\nCommenter avatars come from <a href=\"https://en.gravatar.com/\">Gravatar</a>.',0,'1','','comment',0,0);
/*!40000 ALTER TABLE `staging_ajj_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_e_events`
--

DROP TABLE IF EXISTS `staging_ajj_e_events`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_e_events` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `event_data` text COLLATE utf8mb4_unicode_520_ci,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `created_at_index` (`created_at`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_e_events`
--

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

--
-- Table structure for table `staging_ajj_e_submissions`
--

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

--
-- Dumping data for table `staging_ajj_e_submissions`
--

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

--
-- Table structure for table `staging_ajj_e_submissions_actions_log`
--

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

--
-- Dumping data for table `staging_ajj_e_submissions_actions_log`
--

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

--
-- Table structure for table `staging_ajj_e_submissions_values`
--

DROP TABLE IF EXISTS `staging_ajj_e_submissions_values`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_e_submissions_values` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `submission_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `key` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `value` longtext COLLATE utf8mb4_unicode_520_ci,
  PRIMARY KEY (`id`),
  KEY `submission_id_index` (`submission_id`),
  KEY `key_index` (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_e_submissions_values`
--

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

--
-- Table structure for table `staging_ajj_jetpack_sync_queue`
--

DROP TABLE IF EXISTS `staging_ajj_jetpack_sync_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_jetpack_sync_queue` (
  `ID` bigint(20) NOT NULL AUTO_INCREMENT,
  `queue_id` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `event_payload` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `timestamp` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  PRIMARY KEY (`ID`),
  KEY `event_id` (`event_id`),
  KEY `queue_id` (`queue_id`),
  KEY `queue_id_event_id` (`queue_id`,`event_id`),
  KEY `timestamp` (`timestamp`)
) ENGINE=InnoDB AUTO_INCREMENT=222 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_jetpack_sync_queue`
--

LOCK TABLES `staging_ajj_jetpack_sync_queue` WRITE;
/*!40000 ALTER TABLE `staging_ajj_jetpack_sync_queue` DISABLE KEYS */;
INSERT INTO `staging_ajj_jetpack_sync_queue` VALUES (208,'sync','jpsq_sync-1701052424.693915-734316-1','a:6:{i:0;s:26:\"automatic_updates_complete\";i:1;a:1:{i:0;a:1:{s:6:\"plugin\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"item\";O:8:\"stdClass\":18:{s:14:\"stable_version\";s:6:\"3.17.1\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:6:\"3.17.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzAwMTg0OTQxLCJleHAiOjE3MDAyNzEzNDF9.zyId9Rvc0HYV4_QoMzD-C1UE2tO4oYa9ZvQvNkT0iTk/package_download\";s:13:\"download_link\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzAwMTg0OTQxLCJleHAiOjE3MDAyNzEzNDF9.zyId9Rvc0HYV4_QoMzD-C1UE2tO4oYa9ZvQvNkT0iTk/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MDAxODQ5NDEsImV4cCI6MTcwMDI3MTM0MX0.qvYbLJ9pz1u4y6ulqDrUlRvN-PuIeZa4Nz7yxRh1FPc/previous_download\";s:13:\"download_link\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MDAxODQ5NDEsImV4cCI6MTcwMDI3MTM0MX0.qvYbLJ9pz1u4y6ulqDrUlRvN-PuIeZa4Nz7yxRh1FPc/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";s:15:\"current_version\";s:6:\"3.14.1\";}s:6:\"result\";N;s:4:\"name\";s:13:\"Elementor Pro\";s:8:\"messages\";a:3:{i:0;s:30:\"Updating plugin: Elementor Pro\";i:1;s:368:\"Downloading update from https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzAwMTg0OTQxLCJleHAiOjE3MDAyNzEzNDF9.zyId9Rvc0HYV4_QoMzD-C1UE2tO4oYa9ZvQvNkT0iTk/package_download&#8230;\";i:2;s:29:\"Download failed. Unauthorized\";}}}}}i:2;i:0;i:3;d:1701052424.6924459934234619140625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:1;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:105:\"https://healthyfoodrestaurant.in/staging/3871/wp-cron.php?doing_wp_cron=1701052422.7348229885101318359375\";}}','2023-11-27 02:33:44'),(209,'sync','jpsq_sync-1701052425.595758-734316-2','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:15:\"jetpack_options\";i:1;a:10:{s:7:\"version\";s:17:\"12.8.1:1699917738\";s:11:\"old_version\";s:15:\"12.8:1699315137\";s:14:\"last_heartbeat\";i:1700898995;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:223223399;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:27:\"recommendations_conditional\";a:4:{i:0;s:7:\"protect\";i:1;s:11:\"backup-plan\";i:2;s:5:\"boost\";i:3;s:9:\"publicize\";}s:32:\"recommendations_banner_dismissed\";i:1;}i:2;a:10:{s:7:\"version\";s:17:\"12.8.1:1699917738\";s:11:\"old_version\";s:15:\"12.8:1699315137\";s:14:\"last_heartbeat\";i:1701052425;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:223223399;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:27:\"recommendations_conditional\";a:4:{i:0;s:7:\"protect\";i:1;s:11:\"backup-plan\";i:2;s:5:\"boost\";i:3;s:9:\"publicize\";}s:32:\"recommendations_banner_dismissed\";i:1;}}i:2;i:0;i:3;d:1701052425.59560394287109375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:1;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:105:\"https://healthyfoodrestaurant.in/staging/3871/wp-cron.php?doing_wp_cron=1701052422.7348229885101318359375\";}}','2023-11-27 02:33:45'),(210,'sync','jpsq_sync-1701052442.506628-326248-1','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:7:\"ABSPATH\";i:1;s:63:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/\";}i:2;i:0;i:3;d:1701052442.5030000209808349609375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(211,'sync','jpsq_sync-1701052442.507803-326248-2','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:16:\"EMPTY_TRASH_DAYS\";i:1;i:30;}i:2;i:0;i:3;d:1701052442.5076329708099365234375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(212,'sync','jpsq_sync-1701052442.508374-326248-3','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:14:\"WP_CONTENT_DIR\";i:1;s:73:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content\";}i:2;i:0;i:3;d:1701052442.5082681179046630859375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(213,'sync','jpsq_sync-1701052442.508866-326248-4','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:1;i:60;}i:2;i:0;i:3;d:1701052442.50876903533935546875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(214,'sync','jpsq_sync-1701052442.509348-326248-5','a:6:{i:0;s:21:\"jetpack_sync_constant\";i:1;a:2:{i:0;s:17:\"WP_POST_REVISIONS\";i:1;b:1;}i:2;i:0;i:3;d:1701052442.509253025054931640625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(215,'sync','jpsq_sync-1701052442.657551-326248-6','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:24:\"get_plugins_action_links\";i:1;a:1:{s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{s:8:\"Settings\";s:83:\"https://healthyfoodrestaurant.in/staging/3871/wp-admin/admin.php?page=click-to-chat\";s:11:\"PRO Version\";s:53:\"https://holithemes.com/plugins/click-to-chat/pricing/\";}}}i:2;i:0;i:3;d:1701052442.6573879718780517578125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(216,'sync','jpsq_sync-1701052442.660051-326248-7','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"home_url\";i:1;s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}i:2;i:0;i:3;d:1701052442.65987491607666015625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(217,'sync','jpsq_sync-1701052442.665085-326248-8','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:17:\"main_network_site\";i:1;s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}i:2;i:0;i:3;d:1701052442.6649188995361328125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(218,'sync','jpsq_sync-1701052442.668322-326248-9','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:13:\"site_icon_url\";i:1;s:122:\"https://i0.wp.com/healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/cropped-7776956.jpg?fit=512%2C512&ssl=1\";}i:2;i:0;i:3;d:1701052442.6681349277496337890625;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(219,'sync','jpsq_sync-1701052442.672063-326248-10','a:6:{i:0;s:21:\"jetpack_sync_callable\";i:1;a:2:{i:0;s:8:\"site_url\";i:1;s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}i:2;i:0;i:3;d:1701052442.6719090938568115234375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:128:\"https://healthyfoodrestaurant.in/staging/3871/wp-json/jetpack/v4/sync/spawn-sync?time=1701052441&request_lock_id=1701052441.5548\";}}','2023-11-27 02:34:02'),(220,'sync','jpsq_sync-1701052442.860588-734316-3','a:6:{i:0;s:28:\"jetpack_sync_heartbeat_stats\";i:1;a:1:{i:0;s:0:\"\";}i:2;i:0;i:3;d:1701052442.8602879047393798828125;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:1;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:105:\"https://healthyfoodrestaurant.in/staging/3871/wp-cron.php?doing_wp_cron=1701052422.7348229885101318359375\";}}','2023-11-27 02:34:02'),(221,'sync','jpsq_sync-1701052442.934595-734316-4','a:6:{i:0;s:29:\"jetpack_update_plugins_change\";i:1;a:1:{i:0;O:8:\"stdClass\":4:{s:12:\"last_checked\";i:1701052424;s:8:\"response\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.17.1\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:6:\"3.17.1\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzAwMTg0OTQxLCJleHAiOjE3MDAyNzEzNDF9.zyId9Rvc0HYV4_QoMzD-C1UE2tO4oYa9ZvQvNkT0iTk/package_download\";s:13:\"download_link\";s:337:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJkb3dubG9hZF9iZXRhIjpmYWxzZSwiZmlsZV9rZXkiOiIxIiwiaWF0IjoxNzAwMTg0OTQxLCJleHAiOjE3MDAyNzEzNDF9.zyId9Rvc0HYV4_QoMzD-C1UE2tO4oYa9ZvQvNkT0iTk/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.3.2\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MDAxODQ5NDEsImV4cCI6MTcwMDI3MTM0MX0.qvYbLJ9pz1u4y6ulqDrUlRvN-PuIeZa4Nz7yxRh1FPc/previous_download\";s:13:\"download_link\";s:314:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4iLCJpYXQiOjE3MDAxODQ5NDEsImV4cCI6MTcwMDI3MTM0MX0.qvYbLJ9pz1u4y6ulqDrUlRvN-PuIeZa4Nz7yxRh1FPc/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:3:\"5.3\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:6:\"3.30.1\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.8.3\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.6.7\";s:41:\"demo-importer-plus/demo-importer-plus.php\";s:5:\"1.1.8\";s:23:\"elementor/elementor.php\";s:6:\"3.17.3\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.17.1\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:6:\"12.8.1\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";s:5:\"1.1.9\";s:35:\"rishi-companion/rishi-companion.php\";s:5:\"1.2.2\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:5:\"3.6.0\";}}}i:2;i:0;i:3;d:1701052442.934401988983154296875;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:1;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:0;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:105:\"https://healthyfoodrestaurant.in/staging/3871/wp-cron.php?doing_wp_cron=1701052422.7348229885101318359375\";}}','2023-11-27 02:34:02');
/*!40000 ALTER TABLE `staging_ajj_jetpack_sync_queue` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_links`
--

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

--
-- Dumping data for table `staging_ajj_links`
--

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

--
-- Table structure for table `staging_ajj_nfd_data_event_queue`
--

DROP TABLE IF EXISTS `staging_ajj_nfd_data_event_queue`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_nfd_data_event_queue` (
  `id` bigint(20) NOT NULL AUTO_INCREMENT,
  `event` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `attempts` tinyint(3) NOT NULL DEFAULT '0',
  `reserved_at` datetime DEFAULT NULL,
  `available_at` datetime NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_nfd_data_event_queue`
--

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

--
-- Table structure for table `staging_ajj_options`
--

DROP TABLE IF EXISTS `staging_ajj_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=11587 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_options`
--

LOCK TABLES `staging_ajj_options` WRITE;
/*!40000 ALTER TABLE `staging_ajj_options` DISABLE KEYS */;
INSERT INTO `staging_ajj_options` VALUES (1,'siteurl','https://healthyfoodrestaurant.in/staging/3871','yes'),(2,'home','https://healthyfoodrestaurant.in/staging/3871','yes'),(3,'blogname','Healthy Food Restaurant','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','arpitkmaurya1@protonmail.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:92:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:40:\"index.php?&page_id=106&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:9:{i:0;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";i:1;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:41:\"demo-importer-plus/demo-importer-plus.php\";i:4;s:31:\"elementor-pro/elementor-pro.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:19:\"jetpack/jetpack.php\";i:7;s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";i:8;s:35:\"rishi-companion/rishi-companion.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','rishi','yes'),(41,'stylesheet','rishi','yes'),(42,'comment_registration','0','yes'),(43,'html_type','text/html','yes'),(44,'use_trackback','0','yes'),(45,'default_role','subscriber','yes'),(46,'db_version','56657','yes'),(47,'uploads_use_yearmonth_folders','1','yes'),(48,'upload_path','','yes'),(49,'blog_public','1','yes'),(50,'default_link_category','2','yes'),(51,'show_on_front','page','yes'),(52,'tag_base','','yes'),(53,'show_avatars','1','yes'),(54,'avatar_rating','G','yes'),(55,'upload_url_path','','yes'),(56,'thumbnail_size_w','150','yes'),(57,'thumbnail_size_h','150','yes'),(58,'thumbnail_crop','1','yes'),(59,'medium_size_w','300','yes'),(60,'medium_size_h','300','yes'),(61,'avatar_default','mystery','yes'),(62,'large_size_w','1024','yes'),(63,'large_size_h','1024','yes'),(64,'image_default_link_type','none','yes'),(65,'image_default_size','','yes'),(66,'image_default_align','','yes'),(67,'close_comments_for_old_posts','1','yes'),(68,'close_comments_days_old','28','yes'),(69,'thread_comments','1','yes'),(70,'thread_comments_depth','5','yes'),(71,'page_comments','0','yes'),(72,'comments_per_page','20','yes'),(73,'default_comments_page','newest','yes'),(74,'comment_order','asc','yes'),(75,'sticky_posts','a:0:{}','yes'),(76,'widget_categories','a:2:{i:1;a: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'),(77,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(78,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(79,'uninstall_plugins','a:2:{s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{i:0;s:15:\"HT_CTC_Register\";i:1;s:9:\"uninstall\";}}','no'),(80,'timezone_string','','yes'),(81,'page_for_posts','1561','yes'),(82,'page_on_front','106','yes'),(83,'default_post_format','0','yes'),(84,'link_manager_enabled','0','yes'),(85,'finished_splitting_shared_terms','1','yes'),(86,'site_icon','4785','yes'),(87,'medium_large_size_w','768','yes'),(88,'medium_large_size_h','0','yes'),(89,'wp_page_for_privacy_policy','3','yes'),(90,'show_comments_cookies_opt_in','1','yes'),(91,'admin_email_lifespan','1709603305','yes'),(92,'disallowed_keys','','no'),(93,'comment_previously_approved','1','yes'),(94,'auto_plugin_theme_update_emails','a:1:{s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.20.0\";}','no'),(95,'auto_update_core_dev','enabled','yes'),(96,'auto_update_core_minor','enabled','yes'),(97,'auto_update_core_major','enabled','yes'),(98,'wp_force_deactivated_plugins','a:0:{}','yes'),(99,'initial_db_version','55853','yes'),(100,'staging_ajj_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(101,'fresh_site','0','yes'),(102,'user_count','2','no'),(103,'widget_block','a:8:{i:2;a:1:{s:7:\"content\";s:19:\"<!-- wp:search /-->\";}i:3;a:1:{s:7:\"content\";s:154:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Posts</h2><!-- /wp:heading --><!-- wp:latest-posts /--></div><!-- /wp:group -->\";}i:4;a:1:{s:7:\"content\";s:227:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Recent Comments</h2><!-- /wp:heading --><!-- wp:latest-comments {\"displayAvatar\":false,\"displayDate\":false,\"displayExcerpt\":false} /--></div><!-- /wp:group -->\";}i:5;a:1:{s:7:\"content\";s:146:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Archives</h2><!-- /wp:heading --><!-- wp:archives /--></div><!-- /wp:group -->\";}i:6;a:1:{s:7:\"content\";s:150:\"<!-- wp:group --><div class=\"wp-block-group\"><!-- wp:heading --><h2>Categories</h2><!-- /wp:heading --><!-- wp:categories /--></div><!-- /wp:group -->\";}i:7;a:1:{s:7:\"content\";s:460:\"<!-- wp:gallery {\"linkTo\":\"none\",\"sizeSlug\":\"full\",\"align\":\"center\"} -->\n<figure class=\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped\"><!-- wp:image {\"id\":3151,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-full\"><img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-4.png\" alt=\"\" class=\"wp-image-3151\"/></figure>\n<!-- /wp:image --></figure>\n<!-- /wp:gallery -->\";}s:12:\"_multiwidget\";i:1;i:9;a:1:{s:7:\"content\";s:153:\"<!-- wp:heading {\"textAlign\":\"center\",\"level\":4} -->\n<h4 class=\"wp-block-heading has-text-align-center\">Healthy Food Restaurant</h4>\n<!-- /wp:heading -->\";}}','yes'),(104,'sidebars_widgets','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:11:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";i:5;s:8:\"search-1\";i:6;s:14:\"recent-posts-1\";i:7;s:17:\"recent-comments-1\";i:8;s:10:\"archives-1\";i:9;s:12:\"categories-1\";i:10;s:6:\"meta-1\";}s:10:\"footer-one\";a:2:{i:0;s:7:\"block-7\";i:1;s:7:\"block-9\";}s:10:\"footer-two\";a:1:{i:0;s:10:\"nav_menu-1\";}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:11:\"footer-five\";a:0:{}s:10:\"footer-six\";a:0:{}s:13:\"array_version\";i:3;}','yes'),(105,'allow_major_auto_core_updates','true','yes'),(106,'allow_minor_auto_core_updates','true','yes'),(107,'auto_update_plugin','true','yes'),(108,'auto_update_theme','true','yes'),(109,'auto_update_translation','true','yes'),(110,'mm_brand','Bluehost_India','yes'),(111,'mm_coming_soon','true','yes'),(112,'mm_host','b7119342-0c17-11e2-8b3b-0030483370c8','yes'),(113,'bluehost_plugin_compatibility_results','a:2:{s:6:\"status\";s:8:\"standard\";s:9:\"timestamp\";s:19:\"2023-09-07 01:48:30\";}','yes'),(115,'CE4WP_REFERRED_BY','a:3:{s:8:\"campaign\";s:17:\"Bluehost_Standard\";s:6:\"plugin\";s:8:\"Bluehost\";s:6:\"source\";s:12:\"preinstalled\";}','yes'),(118,'ce4wp_activation_redirect','0','yes'),(119,'endurance_cache_level','2','yes'),(120,'jetpack_activated','1','yes'),(121,'jetpack_activation_source','a:2:{i:0;s:7:\"unknown\";i:1;N;}','yes'),(122,'jetpack_sync_settings_disable','0','yes'),(123,'jetpack_options','a:10:{s:7:\"version\";s:17:\"13.2.1:1710467160\";s:11:\"old_version\";s:15:\"13.2:1709771155\";s:14:\"last_heartbeat\";i:1710815184;s:28:\"fallback_no_verify_ssl_certs\";i:0;s:9:\"time_diff\";i:0;s:2:\"id\";i:223223399;s:6:\"public\";i:1;s:30:\"recommendations_banner_enabled\";b:1;s:27:\"recommendations_conditional\";a:4:{i:0;s:7:\"protect\";i:1;s:11:\"backup-plan\";i:2;s:5:\"boost\";i:3;s:9:\"publicize\";}s:32:\"recommendations_banner_dismissed\";i:1;}','yes'),(124,'wpseo','a:106:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";b:0;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:0;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"21.1\";s:16:\"previous_version\";s:0:\"\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:0;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1694051321;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:0:{}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:0;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:0:{}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:28:\"wordproof_integration_active\";b:0;s:29:\"wordproof_integration_changed\";b:0;s:18:\"first_time_install\";b:1;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1694051367;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:1:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1694051367;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;}','yes'),(125,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"21.1\";}','yes'),(126,'cron','a:13:{i:1710855999;a:1:{s:18:\"nfd_data_sync_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:8:\"minutely\";s:4:\"args\";a:0:{}s:8:\"interval\";i:60;}}}i:1710856121;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:1710856122;a:5:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}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:1710856164;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1710899321;a:3:{s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}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: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:1710899364;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1710899366;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1710899367;a:1:{s:24:\"jp_purge_transients_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1710900354;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:1710985731;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:1711072121;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1711072124;a:1:{s:13:\"nfd_data_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(127,'wpseo_titles','a:117:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:2:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:22:\"company_alternate_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:24:\"publishing_principles_id\";i:0;s:25:\"ownership_funding_info_id\";i:0;s:29:\"actionable_feedback_policy_id\";i:0;s:21:\"corrections_policy_id\";i:0;s:16:\"ethics_policy_id\";i:0;s:19:\"diversity_policy_id\";i:0;s:28:\"diversity_staffing_report_id\";i:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:26:\"taxonomy-category-ptparent\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:26:\"taxonomy-post_tag-ptparent\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:29:\"taxonomy-post_format-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(128,'wpseo_social','a:20:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";s:17:\"other_social_urls\";a:0:{}s:12:\"mastodon_url\";s:0:\"\";}','yes'),(133,'jetpack_available_modules','a:1:{s:6:\"13.2.1\";a:45:{s:5:\"blaze\";s:4:\"12.3\";s:8:\"carousel\";s:3:\"1.5\";s:13:\"comment-likes\";s:3:\"5.1\";s:8:\"comments\";s:3:\"1.4\";s:12:\"contact-form\";s:3:\"1.3\";s:9:\"copy-post\";s:3:\"7.0\";s:20:\"custom-content-types\";s:3:\"3.1\";s:10:\"custom-css\";s:3:\"1.7\";s:21:\"enhanced-distribution\";s:3:\"1.2\";s:16:\"google-analytics\";s:3:\"4.5\";s:12:\"google-fonts\";s:6:\"10.8.0\";s:19:\"gravatar-hovercards\";s:3:\"1.1\";s:15:\"infinite-scroll\";s:3:\"2.0\";s:8:\"json-api\";s:3:\"1.9\";s:5:\"latex\";s:3:\"1.1\";s:5:\"likes\";s:3:\"2.2\";s:8:\"markdown\";s:3:\"2.8\";s:9:\"masterbar\";s:3:\"4.8\";s:7:\"monitor\";s:3:\"2.6\";s:5:\"notes\";s:3:\"1.9\";s:10:\"photon-cdn\";s:3:\"6.6\";s:6:\"photon\";s:3:\"2.0\";s:13:\"post-by-email\";s:3:\"2.0\";s:9:\"post-list\";s:4:\"11.3\";s:7:\"protect\";s:3:\"3.4\";s:9:\"publicize\";s:3:\"2.0\";s:13:\"related-posts\";s:3:\"2.9\";s:6:\"search\";s:3:\"5.0\";s:9:\"seo-tools\";s:3:\"4.4\";s:10:\"sharedaddy\";s:3:\"1.1\";s:10:\"shortcodes\";s:3:\"1.1\";s:10:\"shortlinks\";s:3:\"1.1\";s:8:\"sitemaps\";s:3:\"3.9\";s:3:\"sso\";s:3:\"2.6\";s:5:\"stats\";s:3:\"1.1\";s:13:\"subscriptions\";s:3:\"1.2\";s:13:\"tiled-gallery\";s:3:\"2.1\";s:10:\"vaultpress\";s:5:\"0:1.2\";s:18:\"verification-tools\";s:3:\"3.0\";s:10:\"videopress\";s:3:\"2.5\";s:3:\"waf\";s:4:\"10.9\";s:17:\"widget-visibility\";s:3:\"2.4\";s:7:\"widgets\";s:3:\"1.2\";s:21:\"woocommerce-analytics\";s:3:\"8.4\";s:7:\"wordads\";s:5:\"4.5.0\";}}','yes'),(134,'jetpack_connection_active_plugins','a:1:{s:7:\"jetpack\";a:1:{s:4:\"name\";s:7:\"Jetpack\";}}','yes'),(137,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'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'),(140,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(143,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(144,'widget_meta','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_search','a:2:{i:1;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(146,'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'),(147,'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'),(148,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(149,'widget_nav_menu','a:2:{i:1;a:1:{s:8:\"nav_menu\";i:8;}s:12:\"_multiwidget\";i:1;}','yes'),(150,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151,'_transient_wp_core_block_css_files','a:496:{i:0;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor-rtl.css\";i:1;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor-rtl.min.css\";i:2;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor.css\";i:3;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/editor.min.css\";i:4;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style-rtl.css\";i:5;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style-rtl.min.css\";i:6;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style.css\";i:7;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/archives/style.min.css\";i:8;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor-rtl.css\";i:9;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor-rtl.min.css\";i:10;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor.css\";i:11;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/editor.min.css\";i:12;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style-rtl.css\";i:13;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style-rtl.min.css\";i:14;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style.css\";i:15;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/style.min.css\";i:16;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme-rtl.css\";i:17;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme-rtl.min.css\";i:18;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme.css\";i:19;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/audio/theme.min.css\";i:20;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor-rtl.css\";i:21;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor-rtl.min.css\";i:22;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor.css\";i:23;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/editor.min.css\";i:24;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style-rtl.css\";i:25;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style-rtl.min.css\";i:26;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style.css\";i:27;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/avatar/style.min.css\";i:28;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor-rtl.css\";i:29;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor-rtl.min.css\";i:30;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor.css\";i:31;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/block/editor.min.css\";i:32;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor-rtl.css\";i:33;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor-rtl.min.css\";i:34;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor.css\";i:35;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/editor.min.css\";i:36;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style-rtl.css\";i:37;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style-rtl.min.css\";i:38;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style.css\";i:39;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/button/style.min.css\";i:40;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor-rtl.css\";i:41;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor-rtl.min.css\";i:42;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor.css\";i:43;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/editor.min.css\";i:44;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style-rtl.css\";i:45;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style-rtl.min.css\";i:46;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style.css\";i:47;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/buttons/style.min.css\";i:48;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style-rtl.css\";i:49;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style-rtl.min.css\";i:50;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style.css\";i:51;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/calendar/style.min.css\";i:52;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor-rtl.css\";i:53;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor-rtl.min.css\";i:54;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor.css\";i:55;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/editor.min.css\";i:56;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style-rtl.css\";i:57;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style-rtl.min.css\";i:58;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style.css\";i:59;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/categories/style.min.css\";i:60;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor-rtl.css\";i:61;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor-rtl.min.css\";i:62;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor.css\";i:63;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/editor.min.css\";i:64;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style-rtl.css\";i:65;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style-rtl.min.css\";i:66;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style.css\";i:67;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/style.min.css\";i:68;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme-rtl.css\";i:69;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme-rtl.min.css\";i:70;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme.css\";i:71;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/code/theme.min.css\";i:72;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor-rtl.css\";i:73;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor-rtl.min.css\";i:74;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor.css\";i:75;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/editor.min.css\";i:76;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style-rtl.css\";i:77;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style-rtl.min.css\";i:78;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style.css\";i:79;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/columns/style.min.css\";i:80;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style-rtl.css\";i:81;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style-rtl.min.css\";i:82;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style.css\";i:83;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-content/style.min.css\";i:84;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style-rtl.css\";i:85;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style-rtl.min.css\";i:86;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style.css\";i:87;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comment-template/style.min.css\";i:88;s:111:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor-rtl.css\";i:89;s:115:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor-rtl.min.css\";i:90;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor.css\";i:91;s:111:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination-numbers/editor.min.css\";i:92;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor-rtl.css\";i:93;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor-rtl.min.css\";i:94;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor.css\";i:95;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/editor.min.css\";i:96;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style-rtl.css\";i:97;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style-rtl.min.css\";i:98;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style.css\";i:99;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-pagination/style.min.css\";i:100;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor-rtl.css\";i:101;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor-rtl.min.css\";i:102;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor.css\";i:103;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments-title/editor.min.css\";i:104;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor-rtl.css\";i:105;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor-rtl.min.css\";i:106;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor.css\";i:107;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/editor.min.css\";i:108;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style-rtl.css\";i:109;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style-rtl.min.css\";i:110;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style.css\";i:111;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/comments/style.min.css\";i:112;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor-rtl.css\";i:113;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor-rtl.min.css\";i:114;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor.css\";i:115;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/editor.min.css\";i:116;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style-rtl.css\";i:117;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style-rtl.min.css\";i:118;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style.css\";i:119;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/cover/style.min.css\";i:120;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor-rtl.css\";i:121;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor-rtl.min.css\";i:122;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor.css\";i:123;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/editor.min.css\";i:124;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style-rtl.css\";i:125;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style-rtl.min.css\";i:126;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style.css\";i:127;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/details/style.min.css\";i:128;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor-rtl.css\";i:129;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor-rtl.min.css\";i:130;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor.css\";i:131;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/editor.min.css\";i:132;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style-rtl.css\";i:133;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style-rtl.min.css\";i:134;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style.css\";i:135;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/style.min.css\";i:136;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme-rtl.css\";i:137;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme-rtl.min.css\";i:138;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme.css\";i:139;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/embed/theme.min.css\";i:140;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor-rtl.css\";i:141;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor-rtl.min.css\";i:142;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor.css\";i:143;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/editor.min.css\";i:144;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style-rtl.css\";i:145;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style-rtl.min.css\";i:146;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style.css\";i:147;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/file/style.min.css\";i:148;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style-rtl.css\";i:149;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style-rtl.min.css\";i:150;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style.css\";i:151;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/footnotes/style.min.css\";i:152;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor-rtl.css\";i:153;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor-rtl.min.css\";i:154;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor.css\";i:155;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/freeform/editor.min.css\";i:156;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor-rtl.css\";i:157;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor-rtl.min.css\";i:158;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor.css\";i:159;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/editor.min.css\";i:160;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style-rtl.css\";i:161;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style-rtl.min.css\";i:162;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style.css\";i:163;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/style.min.css\";i:164;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme-rtl.css\";i:165;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme-rtl.min.css\";i:166;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme.css\";i:167;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/gallery/theme.min.css\";i:168;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor-rtl.css\";i:169;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor-rtl.min.css\";i:170;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor.css\";i:171;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/editor.min.css\";i:172;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style-rtl.css\";i:173;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style-rtl.min.css\";i:174;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style.css\";i:175;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/style.min.css\";i:176;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme-rtl.css\";i:177;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme-rtl.min.css\";i:178;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme.css\";i:179;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/group/theme.min.css\";i:180;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style-rtl.css\";i:181;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style-rtl.min.css\";i:182;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style.css\";i:183;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/heading/style.min.css\";i:184;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor-rtl.css\";i:185;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor-rtl.min.css\";i:186;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor.css\";i:187;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/html/editor.min.css\";i:188;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor-rtl.css\";i:189;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor-rtl.min.css\";i:190;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor.css\";i:191;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/editor.min.css\";i:192;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style-rtl.css\";i:193;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style-rtl.min.css\";i:194;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style.css\";i:195;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/style.min.css\";i:196;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme-rtl.css\";i:197;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme-rtl.min.css\";i:198;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme.css\";i:199;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/image/theme.min.css\";i:200;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style-rtl.css\";i:201;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style-rtl.min.css\";i:202;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style.css\";i:203;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-comments/style.min.css\";i:204;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor-rtl.css\";i:205;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor-rtl.min.css\";i:206;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor.css\";i:207;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/editor.min.css\";i:208;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style-rtl.css\";i:209;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style-rtl.min.css\";i:210;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style.css\";i:211;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/latest-posts/style.min.css\";i:212;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style-rtl.css\";i:213;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style-rtl.min.css\";i:214;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style.css\";i:215;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/list/style.min.css\";i:216;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor-rtl.css\";i:217;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor-rtl.min.css\";i:218;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor.css\";i:219;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/editor.min.css\";i:220;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style-rtl.css\";i:221;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style-rtl.min.css\";i:222;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style.css\";i:223;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/media-text/style.min.css\";i:224;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor-rtl.css\";i:225;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor-rtl.min.css\";i:226;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor.css\";i:227;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/more/editor.min.css\";i:228;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor-rtl.css\";i:229;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor-rtl.min.css\";i:230;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor.css\";i:231;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/editor.min.css\";i:232;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style-rtl.css\";i:233;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style-rtl.min.css\";i:234;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style.css\";i:235;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-link/style.min.css\";i:236;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor-rtl.css\";i:237;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor-rtl.min.css\";i:238;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor.css\";i:239;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation-submenu/editor.min.css\";i:240;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor-rtl.css\";i:241;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor-rtl.min.css\";i:242;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor.css\";i:243;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/editor.min.css\";i:244;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style-rtl.css\";i:245;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style-rtl.min.css\";i:246;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style.css\";i:247;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/navigation/style.min.css\";i:248;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor-rtl.css\";i:249;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor-rtl.min.css\";i:250;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor.css\";i:251;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/nextpage/editor.min.css\";i:252;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor-rtl.css\";i:253;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor-rtl.min.css\";i:254;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor.css\";i:255;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/editor.min.css\";i:256;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style-rtl.css\";i:257;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style-rtl.min.css\";i:258;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style.css\";i:259;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/page-list/style.min.css\";i:260;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor-rtl.css\";i:261;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor-rtl.min.css\";i:262;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor.css\";i:263;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/editor.min.css\";i:264;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style-rtl.css\";i:265;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style-rtl.min.css\";i:266;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style.css\";i:267;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/paragraph/style.min.css\";i:268;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style-rtl.css\";i:269;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style-rtl.min.css\";i:270;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style.css\";i:271;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-author/style.min.css\";i:272;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor-rtl.css\";i:273;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor-rtl.min.css\";i:274;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor.css\";i:275;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/editor.min.css\";i:276;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style-rtl.css\";i:277;s:105:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style-rtl.min.css\";i:278;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style.css\";i:279;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-comments-form/style.min.css\";i:280;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style-rtl.css\";i:281;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style-rtl.min.css\";i:282;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style.css\";i:283;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-date/style.min.css\";i:284;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor-rtl.css\";i:285;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor-rtl.min.css\";i:286;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor.css\";i:287;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/editor.min.css\";i:288;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style-rtl.css\";i:289;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style-rtl.min.css\";i:290;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style.css\";i:291;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-excerpt/style.min.css\";i:292;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor-rtl.css\";i:293;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor-rtl.min.css\";i:294;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor.css\";i:295;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/editor.min.css\";i:296;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style-rtl.css\";i:297;s:106:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style-rtl.min.css\";i:298;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style.css\";i:299;s:102:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-featured-image/style.min.css\";i:300;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style-rtl.css\";i:301;s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style-rtl.min.css\";i:302;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style.css\";i:303;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-navigation-link/style.min.css\";i:304;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor-rtl.css\";i:305;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor-rtl.min.css\";i:306;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor.css\";i:307;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/editor.min.css\";i:308;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style-rtl.css\";i:309;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style-rtl.min.css\";i:310;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style.css\";i:311;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-template/style.min.css\";i:312;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style-rtl.css\";i:313;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style-rtl.min.css\";i:314;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style.css\";i:315;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-terms/style.min.css\";i:316;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style-rtl.css\";i:317;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style-rtl.min.css\";i:318;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style.css\";i:319;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/post-title/style.min.css\";i:320;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style-rtl.css\";i:321;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style-rtl.min.css\";i:322;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style.css\";i:323;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/preformatted/style.min.css\";i:324;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor-rtl.css\";i:325;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor-rtl.min.css\";i:326;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor.css\";i:327;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/editor.min.css\";i:328;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style-rtl.css\";i:329;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style-rtl.min.css\";i:330;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style.css\";i:331;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/style.min.css\";i:332;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme-rtl.css\";i:333;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme-rtl.min.css\";i:334;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme.css\";i:335;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/pullquote/theme.min.css\";i:336;s:108:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor-rtl.css\";i:337;s:112:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor-rtl.min.css\";i:338;s:104:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor.css\";i:339;s:108:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination-numbers/editor.min.css\";i:340;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor-rtl.css\";i:341;s:104:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor-rtl.min.css\";i:342;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor.css\";i:343;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/editor.min.css\";i:344;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style-rtl.css\";i:345;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style-rtl.min.css\";i:346;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style.css\";i:347;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-pagination/style.min.css\";i:348;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style-rtl.css\";i:349;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style-rtl.min.css\";i:350;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style.css\";i:351;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query-title/style.min.css\";i:352;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor-rtl.css\";i:353;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor-rtl.min.css\";i:354;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor.css\";i:355;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/query/editor.min.css\";i:356;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style-rtl.css\";i:357;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style-rtl.min.css\";i:358;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style.css\";i:359;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/style.min.css\";i:360;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme-rtl.css\";i:361;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme-rtl.min.css\";i:362;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme.css\";i:363;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/quote/theme.min.css\";i:364;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style-rtl.css\";i:365;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style-rtl.min.css\";i:366;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style.css\";i:367;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/read-more/style.min.css\";i:368;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor-rtl.css\";i:369;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor-rtl.min.css\";i:370;s:83:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor.css\";i:371;s:87:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/editor.min.css\";i:372;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style-rtl.css\";i:373;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style-rtl.min.css\";i:374;s:82:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style.css\";i:375;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/rss/style.min.css\";i:376;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor-rtl.css\";i:377;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor-rtl.min.css\";i:378;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor.css\";i:379;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/editor.min.css\";i:380;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style-rtl.css\";i:381;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style-rtl.min.css\";i:382;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style.css\";i:383;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/style.min.css\";i:384;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme-rtl.css\";i:385;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme-rtl.min.css\";i:386;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme.css\";i:387;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/search/theme.min.css\";i:388;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor-rtl.css\";i:389;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor-rtl.min.css\";i:390;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor.css\";i:391;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/editor.min.css\";i:392;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style-rtl.css\";i:393;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style-rtl.min.css\";i:394;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style.css\";i:395;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/style.min.css\";i:396;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme-rtl.css\";i:397;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme-rtl.min.css\";i:398;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme.css\";i:399;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/separator/theme.min.css\";i:400;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor-rtl.css\";i:401;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor-rtl.min.css\";i:402;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor.css\";i:403;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/shortcode/editor.min.css\";i:404;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor-rtl.css\";i:405;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor-rtl.min.css\";i:406;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor.css\";i:407;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/editor.min.css\";i:408;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style-rtl.css\";i:409;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style-rtl.min.css\";i:410;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style.css\";i:411;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-logo/style.min.css\";i:412;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor-rtl.css\";i:413;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor-rtl.min.css\";i:414;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor.css\";i:415;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-tagline/editor.min.css\";i:416;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor-rtl.css\";i:417;s:98:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor-rtl.min.css\";i:418;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor.css\";i:419;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/editor.min.css\";i:420;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style-rtl.css\";i:421;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style-rtl.min.css\";i:422;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style.css\";i:423;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/site-title/style.min.css\";i:424;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor-rtl.css\";i:425;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor-rtl.min.css\";i:426;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor.css\";i:427;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-link/editor.min.css\";i:428;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor-rtl.css\";i:429;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor-rtl.min.css\";i:430;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor.css\";i:431;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/editor.min.css\";i:432;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style-rtl.css\";i:433;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style-rtl.min.css\";i:434;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style.css\";i:435;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/social-links/style.min.css\";i:436;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor-rtl.css\";i:437;s:94:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor-rtl.min.css\";i:438;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor.css\";i:439;s:90:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/editor.min.css\";i:440;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style-rtl.css\";i:441;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style-rtl.min.css\";i:442;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style.css\";i:443;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/spacer/style.min.css\";i:444;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor-rtl.css\";i:445;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor-rtl.min.css\";i:446;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor.css\";i:447;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/editor.min.css\";i:448;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style-rtl.css\";i:449;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style-rtl.min.css\";i:450;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style.css\";i:451;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/style.min.css\";i:452;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme-rtl.css\";i:453;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme-rtl.min.css\";i:454;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme.css\";i:455;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/table/theme.min.css\";i:456;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style-rtl.css\";i:457;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style-rtl.min.css\";i:458;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style.css\";i:459;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/tag-cloud/style.min.css\";i:460;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor-rtl.css\";i:461;s:101:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor-rtl.min.css\";i:462;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor.css\";i:463;s:97:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/editor.min.css\";i:464;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme-rtl.css\";i:465;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme-rtl.min.css\";i:466;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme.css\";i:467;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/template-part/theme.min.css\";i:468;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style-rtl.css\";i:469;s:103:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style-rtl.min.css\";i:470;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style.css\";i:471;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/term-description/style.min.css\";i:472;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor-rtl.css\";i:473;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor-rtl.min.css\";i:474;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor.css\";i:475;s:96:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/editor.min.css\";i:476;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style-rtl.css\";i:477;s:99:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style-rtl.min.css\";i:478;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style.css\";i:479;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/text-columns/style.min.css\";i:480;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style-rtl.css\";i:481;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style-rtl.min.css\";i:482;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style.css\";i:483;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/verse/style.min.css\";i:484;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor-rtl.css\";i:485;s:93:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor-rtl.min.css\";i:486;s:85:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor.css\";i:487;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/editor.min.css\";i:488;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style-rtl.css\";i:489;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style-rtl.min.css\";i:490;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style.css\";i:491;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/style.min.css\";i:492;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme-rtl.css\";i:493;s:92:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme-rtl.min.css\";i:494;s:84:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme.css\";i:495;s:88:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-includes/blocks/video/theme.min.css\";}','yes'),(156,'nfd_data_connection_attempts','1','yes'),(158,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:25:\"{{WP_PLUGIN_DIR}}/jetpack\";}','yes'),(159,'newfold_active_modules','a:16:{s:4:\"data\";b:1;s:2:\"ai\";b:1;s:9:\"installer\";b:1;s:18:\"wp-module-patterns\";b:1;s:11:\"coming-soon\";b:1;s:11:\"performance\";b:1;s:8:\"facebook\";b:1;s:9:\"ecommerce\";b:1;s:10:\"global-ctb\";b:1;s:11:\"help-center\";b:1;s:11:\"marketplace\";b:1;s:13:\"notifications\";b:1;s:10:\"onboarding\";b:0;s:16:\"secure-passwords\";b:1;s:3:\"sso\";b:1;s:7:\"staging\";b:1;}','yes'),(162,'nfd_data_token','KIm3eewYGGyjp+dhR/bSKnZnaWttNGJXY1J6VnNHYmpxeEgxZXVzOG1LNDl0Wk14eWszL3Y1U1hra05IZ1ZWbUtkSFdscVlxeDZSNUlCRXZlZ1FoUUgyMWUyUW9JRTJBakpNbXRCK1A1enlpeUpOb20yRUkrNDhVZFg3YnlMZFF2bm44M2lTRE9tSGNMcTY4NG9kT1hXSjRseno1YnhNNUtzb2xsL2s9','yes'),(172,'recovery_keys','a:0:{}','yes'),(173,'jetpack_sync_https_history_home_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:5:\"https\";}','yes'),(174,'jetpack_sync_https_history_site_url','a:5:{i:0;s:4:\"http\";i:1;s:4:\"http\";i:2;s:4:\"http\";i:3;s:4:\"http\";i:4;s:5:\"https\";}','yes'),(175,'theme_mods_twentytwentythree','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1694052259;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";}s:9:\"sidebar-2\";a:2:{i:0;s:7:\"block-5\";i:1;s:7:\"block-6\";}}}}','yes'),(176,'https_detection_errors','a:1:{s:19:\"bad_response_source\";a:1:{i:0;s:55:\"It looks like the response did not come from this site.\";}}','yes'),(179,'auto_update_plugins','a:12:{i:0;s:19:\"akismet/akismet.php\";i:1;s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";i:2;s:36:\"contact-form-7/wp-contact-form-7.php\";i:3;s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";i:4;s:41:\"demo-importer-plus/demo-importer-plus.php\";i:5;s:23:\"elementor/elementor.php\";i:6;s:31:\"elementor-pro/elementor-pro.php\";i:7;s:9:\"hello.php\";i:8;s:19:\"jetpack/jetpack.php\";i:9;s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";i:10;s:35:\"rishi-companion/rishi-companion.php\";i:11;s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";}','no'),(180,'jetpack_waf_needs_update','1','yes'),(191,'jetpack_tos_agreed','1','yes'),(192,'jetpack_secrets','a:1:{s:19:\"jetpack_authorize_1\";a:3:{s:8:\"secret_1\";s:32:\"jzNg5O3CRp36TJQRrihN9qqzwt6k9JLF\";s:8:\"secret_2\";s:32:\"QtUw0in7Vs481V0xblZChPFFhBRvr0qB\";s:3:\"exp\";i:1694051947;}}','no'),(193,'_transient_jetpack_assumed_site_creation_date','2023-09-07 01:48:25','yes'),(194,'jetpack_package_versions','a:5:{s:6:\"backup\";s:5:\"3.3.0\";s:10:\"connection\";s:5:\"2.3.4\";s:4:\"sync\";s:5:\"2.9.0\";s:6:\"search\";s:6:\"0.43.4\";s:10:\"videopress\";s:6:\"0.23.7\";}','yes'),(195,'jetpack_private_options','a:1:{s:10:\"blog_token\";s:65:\"sLw^b1ntnADcPA#4kGbLTYmH3V2)5#fR.uvEE(Cz)S882uuw(kkA!T(ujQ6RAcDWe\";}','yes'),(196,'jetpack_active_modules','a:9:{i:0;s:5:\"blaze\";i:1;s:12:\"contact-form\";i:2;s:21:\"enhanced-distribution\";i:3;s:8:\"json-api\";i:4;s:7:\"protect\";i:5;s:5:\"stats\";i:6;s:21:\"woocommerce-analytics\";i:7;s:6:\"photon\";i:8;s:3:\"sso\";}','yes'),(198,'jetpack_protect_key','bf0a5034793ac064cbd26612e5e795297b8bb37a','no'),(201,'jetpack_unique_registrations','1','yes'),(202,'jetpack_sync_settings_custom_queue_table_enabled','1','yes'),(203,'jetpack_sync_settings_max_queue_size','5000','yes'),(204,'jetpack_sync_settings_max_queue_lag','7200','yes'),(206,'jetpack_sync_settings_dequeue_max_bytes','500000','yes'),(207,'jetpack_sync_settings_upload_max_bytes','600000','yes'),(208,'jetpack_sync_settings_upload_max_rows','500','yes'),(209,'jetpack_sync_settings_sync_wait_time','10','yes'),(210,'jetpack_sync_settings_sync_wait_threshold','10','yes'),(211,'jetpack_sync_settings_enqueue_wait_time','1','yes'),(212,'jetpack_sync_settings_queue_max_writes_sec','100','yes'),(213,'jetpack_sync_settings_post_types_blacklist','a:37:{i:0;s:10:\"_term_meta\";i:1;s:11:\"ai1ec_event\";i:2;s:6:\"ai_log\";i:3;s:17:\"amp_validated_url\";i:4;s:9:\"bwg_album\";i:5;s:11:\"bwg_gallery\";i:6;s:19:\"customize_changeset\";i:7;s:12:\"dn_wp_yt_log\";i:8;s:16:\"flamingo_contact\";i:9;s:16:\"flamingo_inbound\";i:10;s:17:\"flamingo_outbound\";i:11;s:4:\"http\";i:12;s:8:\"idx_page\";i:13;s:19:\"jetpack_inspect_log\";i:14;s:17:\"jetpack_migration\";i:15;s:14:\"jp_img_sitemap\";i:16;s:20:\"jp_img_sitemap_index\";i:17;s:10:\"jp_sitemap\";i:18;s:16:\"jp_sitemap_index\";i:19;s:17:\"jp_sitemap_master\";i:20;s:14:\"jp_vid_sitemap\";i:21;s:20:\"jp_vid_sitemap_index\";i:22;s:11:\"msm_sitemap\";i:23;s:17:\"postman_sent_mail\";i:24;s:10:\"rssap-feed\";i:25;s:15:\"rssmi_feed_item\";i:26;s:16:\"scheduled-action\";i:27;s:20:\"secupress_log_action\";i:28;s:17:\"sg_optimizer_jobs\";i:29;s:14:\"sl-insta-media\";i:30;s:6:\"snitch\";i:31;s:19:\"vip-legacy-redirect\";i:32;s:15:\"wp-rest-api-log\";i:33;s:12:\"wp_automatic\";i:34;s:6:\"wp_log\";i:35;s:17:\"wpephpcompat_jobs\";i:36;s:15:\"wprss_feed_item\";}','yes'),(217,'jetpack_sync_settings_dedicated_sync_enabled','1','yes'),(219,'jetpack_sync_settings_taxonomies_blacklist','a:149:{i:0;s:9:\"ancestors\";i:1;s:13:\"archives_link\";i:2;s:13:\"attached_file\";i:3;s:14:\"attached_media\";i:4;s:19:\"attached_media_args\";i:5;s:10:\"attachment\";i:6;s:19:\"available_languages\";i:7;s:6:\"avatar\";i:8;s:20:\"avatar_comment_types\";i:9;s:11:\"avatar_data\";i:10;s:10:\"avatar_url\";i:11;s:12:\"bloginfo_rss\";i:12;s:13:\"blogs_of_user\";i:13;s:13:\"bookmark_link\";i:14;s:9:\"bookmarks\";i:15;s:8:\"calendar\";i:16;s:13:\"canonical_url\";i:17;s:19:\"categories_per_page\";i:18;s:19:\"categories_taxonomy\";i:19;s:13:\"category_form\";i:20;s:20:\"category_form_fields\";i:21;s:17:\"category_form_pre\";i:22;s:7:\"comment\";i:23;s:10:\"comment_ID\";i:24;s:14:\"comment_author\";i:25;s:17:\"comment_author_IP\";i:26;s:20:\"comment_author_email\";i:27;s:19:\"comment_author_link\";i:28;s:18:\"comment_author_url\";i:29;s:23:\"comment_author_url_link\";i:30;s:12:\"comment_date\";i:31;s:15:\"comment_excerpt\";i:32;s:12:\"comment_link\";i:33;s:20:\"comment_misc_actions\";i:34;s:12:\"comment_text\";i:35;s:12:\"comment_time\";i:36;s:12:\"comment_type\";i:37;s:13:\"comments_link\";i:38;s:15:\"comments_number\";i:39;s:21:\"comments_pagenum_link\";i:40;s:11:\"custom_logo\";i:41;s:8:\"date_sql\";i:42;s:22:\"default_comment_status\";i:43;s:16:\"delete_post_link\";i:44;s:18:\"edit_bookmark_link\";i:45;s:17:\"edit_comment_link\";i:46;s:14:\"edit_post_link\";i:47;s:13:\"edit_tag_link\";i:48;s:14:\"edit_term_link\";i:49;s:14:\"edit_user_link\";i:50;s:8:\"enclosed\";i:51;s:15:\"feed_build_date\";i:52;s:13:\"form_advanced\";i:53;s:17:\"form_after_editor\";i:54;s:16:\"form_after_title\";i:55;s:21:\"form_before_permalink\";i:56;s:8:\"form_top\";i:57;s:18:\"handle_product_cat\";i:58;s:16:\"header_image_tag\";i:59;s:16:\"header_video_url\";i:60;s:9:\"image_tag\";i:61;s:15:\"image_tag_class\";i:62;s:12:\"lastpostdate\";i:63;s:16:\"lastpostmodified\";i:64;s:4:\"link\";i:65;s:18:\"link_category_form\";i:66;s:25:\"link_category_form_fields\";i:67;s:22:\"link_category_form_pre\";i:68;s:15:\"main_network_id\";i:69;s:5:\"media\";i:70;s:15:\"media_item_args\";i:71;s:7:\"ms_user\";i:72;s:7:\"network\";i:73;s:12:\"object_terms\";i:74;s:6:\"option\";i:75;s:4:\"page\";i:76;s:9:\"page_form\";i:77;s:15:\"page_of_comment\";i:78;s:8:\"page_uri\";i:79;s:12:\"pagenum_link\";i:80;s:5:\"pages\";i:81;s:6:\"plugin\";i:82;s:4:\"post\";i:83;s:14:\"post_galleries\";i:84;s:12:\"post_gallery\";i:85;s:9:\"post_link\";i:86;s:18:\"post_modified_time\";i:87;s:11:\"post_status\";i:88;s:9:\"post_time\";i:89;s:8:\"postmeta\";i:90;s:14:\"posts_per_page\";i:91;s:19:\"product_search_form\";i:92;s:11:\"profile_url\";i:93;s:4:\"pung\";i:94;s:9:\"role_list\";i:95;s:16:\"sample_permalink\";i:96;s:21:\"sample_permalink_html\";i:97;s:8:\"schedule\";i:98;s:11:\"search_form\";i:99;s:12:\"search_query\";i:100;s:9:\"shortlink\";i:101;s:4:\"site\";i:102;s:18:\"site_email_content\";i:103;s:13:\"site_icon_url\";i:104;s:11:\"site_option\";i:105;s:13:\"space_allowed\";i:106;s:3:\"tag\";i:107;s:8:\"tag_form\";i:108;s:15:\"tag_form_fields\";i:109;s:12:\"tag_form_pre\";i:110;s:8:\"tag_link\";i:111;s:4:\"tags\";i:112;s:13:\"tags_per_page\";i:113;s:4:\"term\";i:114;s:9:\"term_link\";i:115;s:18:\"term_relationships\";i:116;s:15:\"term_taxonomies\";i:117;s:13:\"term_taxonomy\";i:118;s:5:\"terms\";i:119;s:10:\"terms_args\";i:120;s:14:\"terms_defaults\";i:121;s:12:\"terms_fields\";i:122;s:13:\"terms_orderby\";i:123;s:23:\"the_archive_description\";i:124;s:17:\"the_archive_title\";i:125;s:14:\"the_categories\";i:126;s:8:\"the_date\";i:127;s:11:\"the_excerpt\";i:128;s:8:\"the_guid\";i:129;s:17:\"the_modified_date\";i:130;s:17:\"the_modified_time\";i:131;s:25:\"the_post_type_description\";i:132;s:8:\"the_tags\";i:133;s:9:\"the_terms\";i:134;s:8:\"the_time\";i:135;s:21:\"theme_starter_content\";i:136;s:7:\"to_ping\";i:137;s:4:\"user\";i:138;s:17:\"user_created_user\";i:139;s:9:\"user_form\";i:140;s:12:\"user_profile\";i:141;s:19:\"user_profile_update\";i:142;s:8:\"usermeta\";i:143;s:12:\"usernumposts\";i:144;s:12:\"users_drafts\";i:145;s:7:\"webhook\";i:146;s:6:\"widget\";i:147;s:19:\"woocommerce_archive\";i:148;s:12:\"wp_title_rss\";}','yes'),(221,'jetpack_sync_settings_render_filtered_content','0','yes'),(222,'jetpack_sync_settings_post_meta_whitelist','a:56:{i:0;s:24:\"_feedback_akismet_values\";i:1;s:15:\"_feedback_email\";i:2;s:22:\"_feedback_extra_fields\";i:3;s:21:\"_g_feedback_shortcode\";i:4;s:23:\"_jetpack_post_thumbnail\";i:5;s:25:\"_last_editor_used_jetpack\";i:6;s:18:\"_menu_item_classes\";i:7;s:27:\"_menu_item_menu_item_parent\";i:8;s:17:\"_menu_item_object\";i:9;s:20:\"_menu_item_object_id\";i:10;s:19:\"_menu_item_orphaned\";i:11;s:15:\"_menu_item_type\";i:12;s:14:\"_menu_item_xfn\";i:13;s:24:\"_publicize_facebook_user\";i:14;s:23:\"_publicize_twitter_user\";i:15;s:13:\"_thumbnail_id\";i:16;s:17:\"_wp_attached_file\";i:17;s:27:\"_wp_attachment_backup_sizes\";i:18;s:22:\"_wp_attachment_context\";i:19;s:24:\"_wp_attachment_image_alt\";i:20;s:35:\"_wp_attachment_is_custom_background\";i:21;s:31:\"_wp_attachment_is_custom_header\";i:22;s:23:\"_wp_attachment_metadata\";i:23;s:17:\"_wp_page_template\";i:24;s:30:\"_wp_trash_meta_comments_status\";i:25;s:21:\"_wpas_feature_enabled\";i:26;s:19:\"_wpas_is_tweetstorm\";i:27;s:10:\"_wpas_mess\";i:28;s:13:\"_wpas_options\";i:29;s:24:\"advanced_seo_description\";i:30;s:13:\"content_width\";i:31;s:14:\"custom_css_add\";i:32;s:23:\"custom_css_preprocessor\";i:33;s:9:\"enclosure\";i:34;s:9:\"imagedata\";i:35;s:10:\"nova_price\";i:36;s:17:\"publicize_results\";i:37;s:16:\"sharing_disabled\";i:38;s:18:\"switch_like_status\";i:39;s:15:\"videopress_guid\";i:40;s:18:\"vimeo_poster_image\";i:41;s:28:\"_jetpack_blogging_prompt_key\";i:42;s:25:\"jetpack_memberships_price\";i:43;s:28:\"jetpack_memberships_currency\";i:44;s:35:\"jetpack_memberships_site_subscriber\";i:45;s:14:\"spay_paypal_id\";i:46;s:11:\"spay_status\";i:47;s:15:\"spay_product_id\";i:48;s:13:\"spay_quantity\";i:49;s:10:\"spay_price\";i:50;s:19:\"spay_customer_email\";i:51;s:13:\"spay_currency\";i:52;s:8:\"spay_cta\";i:53;s:10:\"spay_email\";i:54;s:13:\"spay_multiple\";i:55;s:20:\"spay_formatted_price\";}','yes'),(224,'jetpack_sync_settings_comment_meta_whitelist','a:4:{i:0;s:9:\"hc_avatar\";i:1;s:18:\"hc_foreign_user_id\";i:2;s:10:\"hc_post_as\";i:3;s:15:\"hc_wpcom_id_sig\";}','yes'),(226,'jetpack_sync_settings_max_enqueue_full_sync','100','yes'),(227,'jetpack_sync_settings_max_queue_size_full_sync','1000','yes'),(228,'jetpack_sync_settings_sync_via_cron','1','yes'),(229,'jetpack_sync_settings_cron_sync_time_limit','240','yes'),(230,'jetpack_sync_settings_known_importers','a:6:{s:16:\"Blogger_Importer\";s:7:\"blogger\";s:13:\"LJ_API_Import\";s:11:\"livejournal\";s:9:\"MT_Import\";s:2:\"mt\";s:10:\"RSS_Import\";s:3:\"rss\";s:20:\"WC_Tax_Rate_Importer\";s:12:\"woo-tax-rate\";s:9:\"WP_Import\";s:9:\"wordpress\";}','yes'),(231,'jetpack_sync_settings_term_relationships_full_sync_item_size','100','yes'),(232,'jetpack_sync_settings_sync_sender_enabled','1','yes'),(233,'jetpack_sync_settings_full_sync_sender_enabled','1','yes'),(234,'jetpack_sync_settings_full_sync_send_duration','9','yes'),(235,'jetpack_sync_settings_full_sync_limits','a:5:{s:8:\"comments\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}s:5:\"posts\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:1;}s:18:\"term_relationships\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"terms\";a:2:{s:10:\"chunk_size\";i:1000;s:10:\"max_chunks\";i:10;}s:5:\"users\";a:2:{s:10:\"chunk_size\";i:100;s:10:\"max_chunks\";i:10;}}','yes'),(236,'jetpack_sync_settings_checksum_disable','0','yes'),(239,'jetpack_plugin_api_action_links','a:1:{s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";a:2:{s:8:\"Settings\";s:83:\"https://healthyfoodrestaurant.in/staging/3871/wp-admin/admin.php?page=click-to-chat\";s:11:\"PRO Version\";s:53:\"https://holithemes.com/plugins/click-to-chat/pricing/\";}}','yes'),(241,'jetpack_search_plan_info','a:3:{s:23:\"supports_instant_search\";b:0;s:28:\"supports_only_classic_search\";b:0;s:15:\"supports_search\";b:0;}','yes'),(244,'jetpack_testimonial','0','yes'),(261,'jetpack_constants_sync_checksum','a:21:{s:7:\"ABSPATH\";i:1724036792;s:17:\"ALTERNATE_WP_CRON\";i:634125391;s:16:\"ATOMIC_CLIENT_ID\";i:634125391;s:26:\"AUTOMATIC_UPDATER_DISABLED\";i:634125391;s:15:\"DISABLE_WP_CRON\";i:634125391;s:18:\"DISALLOW_FILE_EDIT\";i:634125391;s:18:\"DISALLOW_FILE_MODS\";i:634125391;s:16:\"EMPTY_TRASH_DAYS\";i:2473281379;s:9:\"FS_METHOD\";i:634125391;s:12:\"IS_PRESSABLE\";i:634125391;s:16:\"JETPACK__VERSION\";i:4082622101;s:11:\"PHP_VERSION\";i:4277050600;s:19:\"WP_ACCESSIBLE_HOSTS\";i:634125391;s:19:\"WP_AUTO_UPDATE_CORE\";i:634125391;s:14:\"WP_CONTENT_DIR\";i:3566869839;s:20:\"WP_CRON_LOCK_TIMEOUT\";i:3994858278;s:8:\"WP_DEBUG\";i:734881840;s:22:\"WP_HTTP_BLOCK_EXTERNAL\";i:634125391;s:19:\"WP_MAX_MEMORY_LIMIT\";i:1839787262;s:15:\"WP_MEMORY_LIMIT\";i:3065409971;s:17:\"WP_POST_REVISIONS\";i:4261170317;}','yes'),(262,'jetpack_sync_https_history_main_network_site_url','a:5:{i:0;s:5:\"https\";i:1;s:5:\"https\";i:2;s:5:\"https\";i:3;s:5:\"https\";i:4;s:5:\"https\";}','yes'),(307,'jetpack_callables_sync_checksum','a:39:{s:21:\"get_loaded_extensions\";i:3654539005;s:11:\"get_plugins\";i:3008334887;s:10:\"get_themes\";i:2898156601;s:24:\"get_plugins_action_links\";i:3238060265;s:28:\"has_file_system_write_access\";i:4261170317;s:8:\"home_url\";i:49229781;s:16:\"hosting_provider\";i:769900095;s:12:\"is_fse_theme\";i:734881840;s:15:\"is_main_network\";i:734881840;s:13:\"is_multi_site\";i:734881840;s:21:\"is_version_controlled\";i:734881840;s:6:\"locale\";i:110763218;s:17:\"main_network_site\";i:49229781;s:26:\"main_network_site_wpcom_id\";i:3217838913;s:14:\"paused_plugins\";i:223132457;s:13:\"paused_themes\";i:223132457;s:18:\"post_type_features\";i:1527127605;s:10:\"post_types\";i:1639196762;s:27:\"rest_api_allowed_post_types\";i:2544842423;s:32:\"rest_api_allowed_public_metadata\";i:3610467939;s:5:\"roles\";i:1426873501;s:10:\"shortcodes\";i:1041917653;s:13:\"site_icon_url\";i:2205961314;s:8:\"site_url\";i:49229781;s:10:\"taxonomies\";i:120084487;s:13:\"theme_support\";i:1309285177;s:8:\"timezone\";i:3808505409;s:23:\"wp_get_environment_type\";i:1138987844;s:18:\"wp_max_upload_size\";i:1819132959;s:10:\"wp_version\";i:926662740;s:14:\"active_modules\";i:2559562048;s:16:\"single_user_site\";i:734881840;s:7:\"updates\";i:2903718415;s:24:\"available_jetpack_blocks\";i:2155713395;s:24:\"sso_is_two_step_required\";i:734881840;s:26:\"sso_should_hide_login_form\";i:734881840;s:18:\"sso_match_by_email\";i:4261170317;s:21:\"sso_new_user_override\";i:734881840;s:29:\"sso_bypass_default_login_form\";i:734881840;}','no'),(308,'jpsq_sync_checkout','0:0','no'),(309,'jp_sync_lock_full_sync','','no'),(310,'jetpack_next_sync_time_full-sync-enqueue','1694051949','yes'),(311,'jetpack_next_sync_time_sync','1701052506','yes'),(313,'jp_sync_last_success_immediate-send','1694094248.6017','no'),(317,'jetpack_updates_sync_checksum','a:3:{s:14:\"update_plugins\";i:3926259140;s:13:\"update_themes\";i:903939490;s:11:\"update_core\";i:562465953;}','yes'),(318,'jp_sync_last_success_sync','1700968135.5438','no'),(343,'do_activate','0','yes'),(344,'ce4wp_contacts_db_version','1.0','yes'),(350,'ce4wp_handshake_token','2584D9AB-FBD7-4610-9007-B67ED0F0B6DD','yes'),(351,'ce4wp_handshake_expiration','1694054966','yes'),(352,'ce4wp_instance_uuid','64f92c2698c2f','yes'),(360,'trusted_ip_header','O:8:\"stdClass\":3:{s:14:\"trusted_header\";s:11:\"REMOTE_ADDR\";s:8:\"segments\";i:1;s:7:\"reverse\";b:0;}','no'),(413,'recently_activated','a:0:{}','yes'),(416,'finished_updating_comment_type','1','yes'),(445,'nfd_coming_soon','true','yes'),(448,'nfd_data_module_version','2.4.14','yes'),(449,'auto_update_themes','a:6:{i:0;s:5:\"rishi\";i:1;s:7:\"sinatra\";i:2;s:16:\"twentytwentyfour\";i:3;s:15:\"twentytwentyone\";i:4;s:17:\"twentytwentythree\";i:5;s:15:\"twentytwentytwo\";}','no'),(450,'bluehost_plugin_version','3.7.1','yes'),(451,'mm_install_date','Sep 07, 2023','yes'),(452,'mm_cron','a:1:{s:6:\"hourly\";a:1:{s:9:\"installed\";a:5:{s:1:\"t\";s:5:\"event\";s:2:\"ec\";s:13:\"plugin_status\";s:2:\"ea\";s:9:\"installed\";s:2:\"el\";s:26:\"Install date: Sep 07, 2023\";s:4:\"keep\";b:0;}}}','yes'),(453,'bluehost_plugin_install_date','1694051484','yes'),(469,'bh_cdata_retry_count','4','yes'),(504,'jetpack_sync_full_status','a:4:{s:7:\"started\";i:1694051936;s:8:\"finished\";i:1694051948;s:8:\"progress\";a:10:{s:8:\"comments\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:9:\"constants\";a:1:{s:8:\"finished\";b:1;}s:9:\"functions\";a:1:{s:8:\"finished\";b:1;}s:7:\"options\";a:1:{s:8:\"finished\";b:1;}s:5:\"posts\";a:4:{s:5:\"total\";s:1:\"4\";s:4:\"sent\";i:4;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:18:\"term_relationships\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";a:2:{s:9:\"object_id\";s:1:\"1\";s:16:\"term_taxonomy_id\";s:1:\"1\";}}s:5:\"terms\";a:4:{s:5:\"total\";s:1:\"1\";s:4:\"sent\";i:1;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}s:6:\"themes\";a:1:{s:8:\"finished\";b:1;}s:7:\"updates\";a:1:{s:8:\"finished\";b:1;}s:5:\"users\";a:4:{s:5:\"total\";s:1:\"2\";s:4:\"sent\";i:2;s:8:\"finished\";b:1;s:9:\"last_sent\";s:1:\"1\";}}s:6:\"config\";a:10:{s:8:\"comments\";i:1;s:9:\"constants\";i:1;s:9:\"functions\";i:1;s:7:\"options\";i:1;s:5:\"posts\";i:1;s:18:\"term_relationships\";i:1;s:5:\"terms\";i:1;s:6:\"themes\";i:1;s:7:\"updates\";i:1;s:5:\"users\";i:1;}}','no'),(509,'jp_sync_retry_after_immediate-send','1694051944.881','no'),(510,'jp_sync_error_log_immediate-send','a:3:{s:15:\"1694051938.2342\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:58 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1694051939.5855\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}s:15:\"1694051939.8818\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 01:58:59 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"5\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),(512,'jetpack_sync_health_status','a:2:{s:6:\"status\";s:7:\"in_sync\";s:9:\"timestamp\";d:1694051946.394947052001953125;}','yes'),(552,'current_theme','Rishi','yes'),(553,'theme_mods_rishi','a:72:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:9;}s:18:\"custom_css_post_id\";i:-1;s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";b:1;s:18:\"0.6890474456357631\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";i:4758;s:6:\"tablet\";i:4758;s:6:\"mobile\";i:4758;s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:10:\"logo-title\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"66\";s:6:\"mobile\";s:2:\"56\";s:9:\"__changed\";a:2:{i:0;s:6:\"mobile\";i:1;s:6:\"tablet\";}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"74\";s:6:\"tablet\";s:2:\"74\";s:6:\"mobile\";s:2:\"74\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:24:\"Healthy Food Restaurant \";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:3:\"yes\";s:15:\"blogdescription\";s:0:\"\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:17:\"logo:logoMaxWidth\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:9:{s:18:\"0.5647751040525999\";s:6:\"update\";s:19:\"0.01316682782663614\";s:6:\"update\";s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:1:{i:0;s:13:\"widget-area-1\";}i:1;a:1:{i:0;s:13:\"widget-area-2\";}i:2;a:1:{i:0;s:8:\"contacts\";}i:3;a:1:{i:0;s:7:\"socials\";}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:7:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:10:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}s:16:\"4_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(4, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:29:\"rishi__cb_customizer_location\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}s:9:\"copyright\";a:2:{s:2:\"id\";s:9:\"copyright\";s:6:\"values\";a:1:{s:14:\"copyright_text\";s:127:\"<p>Copyright © {current_year} {site_title} - Designed &amp; Developed by <a href=\"http://whettle.com\">Whettle Services</a></p>\";}}s:7:\"socials\";a:2:{s:2:\"id\";s:7:\"socials\";s:6:\"values\";a:1:{s:14:\"footer_socials\";a:7:{i:0;a:2:{s:2:\"id\";s:8:\"facebook\";s:7:\"enabled\";b:1;}i:1;a:2:{s:2:\"id\";s:7:\"twitter\";s:7:\"enabled\";b:1;}i:2;a:2:{s:2:\"id\";s:9:\"instagram\";s:7:\"enabled\";b:1;}i:3;a:3:{s:2:\"id\";s:7:\"youtube\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"6DC-FGDnDBqDcZt-Sa7P2\";}i:4;a:3:{s:2:\"id\";s:5:\"phone\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"5I5oNfQVev3oYX2Ig2grM\";}i:5;a:3:{s:2:\"id\";s:5:\"email\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"9f_RBJ_p7Lru1Tuv3WYRi\";}i:6;a:3:{s:2:\"id\";s:8:\"whatsapp\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"CmkZ1a7eqp6yo7sjAlgfJ\";}}}}s:8:\"contacts\";a:2:{s:2:\"id\";s:8:\"contacts\";s:6:\"values\";a:1:{s:13:\"contact_items\";a:4:{i:0;a:6:{s:2:\"id\";s:5:\"email\";s:7:\"enabled\";b:1;s:5:\"title\";s:6:\"Email:\";s:7:\"content\";s:29:\"care@healthyfoodrestaurant.in\";s:4:\"link\";s:36:\"mailto:care@healthyfoodrestaurant.in\";s:4:\"__id\";s:21:\"Co4AamBXHUquF7YtD2b6G\";}i:1;a:6:{s:2:\"id\";s:5:\"phone\";s:7:\"enabled\";b:1;s:5:\"title\";s:6:\"Phone:\";s:7:\"content\";s:17:\"+ 91 9628-4444-58\";s:4:\"link\";s:21:\"tel:+ 91 9628-4444-58\";s:4:\"__id\";s:21:\"qvMQqubw-Yy7a2qR3gm_Y\";}i:2;a:6:{s:2:\"id\";s:7:\"address\";s:7:\"enabled\";b:1;s:5:\"title\";s:9:\"Address: \";s:7:\"content\";s:91:\"Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\";s:4:\"link\";s:0:\"\";s:4:\"__id\";s:21:\"mDETyiDiK9b4SxzYSQN1o\";}i:3;a:6:{s:2:\"id\";s:7:\"website\";s:7:\"enabled\";b:1;s:5:\"title\";s:8:\"Website:\";s:7:\"content\";s:23:\"Healthy Food Restaurant\";s:4:\"link\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";s:4:\"__id\";s:21:\"J4rbSfxp9FpMboFilcGPR\";}}}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:22:\"contacts:contact_items\";s:18:\"__should_refresh__\";b:0;}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:6:\"Caudex\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";i:4758;s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";s:12:\"layout_style\";s:10:\"no-sidebar\";s:19:\"page_sidebar_layout\";s:8:\"centered\";s:11:\"page_layout\";s:13:\"content_boxed\";s:23:\"page_layout_streched_ed\";s:3:\"yes\";s:6:\"layout\";s:13:\"content_boxed\";}','yes'),(555,'theme_switched','','yes'),(581,'rc_active_extensions','a:2:{i:0;s:14:\"sidebar-blocks\";i:1;s:18:\"transparent-header\";}','yes'),(582,'rc_active_extensions_flag','1','yes'),(649,'demo_importer_plus_recent_import_log_file','/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/demo-importer-plus/import-07-Sep-2023-02-07-01.txt','yes'),(650,'demo-importer-plus-batch-status-string','Dispatch the Queue!','no'),(651,'demo-importerplus-sites-categories','a:19:{i:0;a:3:{s:2:\"id\";i:245;s:4:\"name\";s:17:\"Download Firmware\";s:4:\"slug\";s:17:\"download-firmware\";}i:1;a:3:{s:2:\"id\";i:246;s:4:\"name\";s:23:\"Download Stock Firmware\";s:4:\"slug\";s:23:\"download-stock-firmware\";}i:2;a:3:{s:2:\"id\";i:227;s:4:\"name\";s:3:\"All\";s:4:\"slug\";s:3:\"all\";}i:3;a:3:{s:2:\"id\";i:225;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";}i:4;a:3:{s:2:\"id\";i:226;s:4:\"name\";s:7:\"Premium\";s:4:\"slug\";s:7:\"premium\";}i:5;a:3:{s:2:\"id\";i:31;s:4:\"name\";s:22:\"Business and Corporate\";s:4:\"slug\";s:22:\"business-and-corporate\";}i:6;a:3:{s:2:\"id\";i:43;s:4:\"name\";s:9:\"Education\";s:4:\"slug\";s:9:\"education\";}i:7;a:3:{s:2:\"id\";i:207;s:4:\"name\";s:10:\"Conference\";s:4:\"slug\";s:10:\"conference\";}i:8;a:3:{s:2:\"id\";i:133;s:4:\"name\";s:17:\"Health and Beauty\";s:4:\"slug\";s:13:\"health-beauty\";}i:9;a:3:{s:2:\"id\";i:199;s:4:\"name\";s:17:\"Blog and Magazine\";s:4:\"slug\";s:17:\"blog-and-magazine\";}i:10;a:3:{s:2:\"id\";i:135;s:4:\"name\";s:19:\"People and Services\";s:4:\"slug\";s:19:\"people-and-services\";}i:11;a:3:{s:2:\"id\";i:134;s:4:\"name\";s:8:\"Creative\";s:4:\"slug\";s:8:\"creative\";}i:12;a:3:{s:2:\"id\";i:119;s:4:\"name\";s:6:\"Events\";s:4:\"slug\";s:6:\"events\";}i:13;a:3:{s:2:\"id\";i:137;s:4:\"name\";s:10:\"Non Profit\";s:4:\"slug\";s:10:\"non-profit\";}i:14;a:3:{s:2:\"id\";i:145;s:4:\"name\";s:20:\"Food and Restaurants\";s:4:\"slug\";s:16:\"food-restaurants\";}i:15;a:3:{s:2:\"id\";i:187;s:4:\"name\";s:11:\"WooCommerce\";s:4:\"slug\";s:11:\"woocommerce\";}i:16;a:3:{s:2:\"id\";i:210;s:4:\"name\";s:9:\"Portfolio\";s:4:\"slug\";s:9:\"portfolio\";}i:17;a:3:{s:2:\"id\";i:208;s:4:\"name\";s:7:\"Seminar\";s:4:\"slug\";s:7:\"seminar\";}i:18;a:3:{s:2:\"id\";i:1;s:4:\"name\";s:13:\"Uncategorized\";s:4:\"slug\";s:13:\"uncategorized\";}}','no'),(654,'demo-importer-plus-batch-status','in-process','no'),(660,'demo_importer_plus_import_data','a:3:{s:7:\"success\";b:1;s:7:\"message\";s:16:\"Demo Site Found.\";s:4:\"data\";a:17:{s:2:\"id\";i:1355;s:10:\"theme_slug\";s:5:\"rishi\";s:10:\"theme_name\";s:5:\"Rishi\";s:10:\"site_title\";s:10:\"Restaurant\";s:8:\"site_url\";s:33:\"https://rishidemos.com/restaurant\";s:9:\"site_type\";s:4:\"free\";s:15:\"is_onepage_demo\";s:2:\"no\";s:15:\"customizer-data\";a:67:{i:0;b:0;s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";i:3;}s:18:\"custom_css_post_id\";i:-1;s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";b:1;s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";i:50;s:6:\"tablet\";i:50;s:7:\"desktop\";i:50;}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";i:70;s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";i:70;s:6:\"tablet\";i:70;s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";s:1:\"6\";s:6:\"spread\";i:0;s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";i:100;s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";i:15;s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:0;}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";i:50;s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:20;s:6:\"spread\";i:0;s:8:\"v_offset\";i:10;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";b:1;}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";i:4210;s:6:\"tablet\";i:4210;s:6:\"mobile\";i:4210;s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";b:0;}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:1;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:70;s:6:\"spread\";i:0;s:8:\"v_offset\";i:0;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";i:1;s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";b:1;s:6:\"mobile\";b:1;}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:106;}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:115;}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:749;}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:751;}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";i:753;}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";b:1;s:6:\"mobile\";b:1;}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";i:40;s:6:\"mobile\";i:40;s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";b:0;}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";b:0;}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";b:0;}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";i:4210;s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:0;s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";i:2;s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";b:0;}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";i:3;s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";b:1;s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";b:1;s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";b:1;s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";b:1;s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";b:1;s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";i:34;}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";b:1;s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";b:1;}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";b:1;s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";i:30;s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";b:0;s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";b:1;}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";b:1;s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";i:3;s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";b:1;s:6:\"tablet\";b:1;s:6:\"mobile\";b:1;}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";b:1;}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:1;}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";b:1;}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}s:8:\"wxr-path\";s:70:\"https://rishidemos.com/wp-content/uploads/2021/08/rishi-restaurant.xml\";s:11:\"site-option\";a:39:{s:10:\"custom_log\";s:73:\"https://rishidemos.com/wp-content/uploads/sites/9/2021/11/Logo-Whhite.png\";s:20:\"elementor_active_kit\";s:2:\"29\";s:25:\"elementor_container_width\";i:1190;s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"internal\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";b:0;s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:23:\"elementor_load_fa4_shim\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:14:\"h1.entry-title\";s:22:\"elementor_scheme_color\";a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}s:29:\"elementor_scheme_color-picker\";a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}s:27:\"elementor_scheme_typography\";a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}s:31:\"elementor_space_between_widgets\";i:0;s:37:\"elementor_stretched_section_container\";s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:6:\"menu-1\";}s:14:\"page_for_posts\";s:4:\"Blog\";s:13:\"page_on_front\";s:4:\"Home\";s:13:\"show_on_front\";s:4:\"page\";s:27:\"woocommerce_cart_page_title\";b:0;s:38:\"woocommerce_change_password_page_title\";b:0;s:31:\"woocommerce_checkout_page_title\";b:0;s:35:\"woocommerce_edit_address_page_title\";b:0;s:42:\"woocommerce_enable_checkout_login_reminder\";s:2:\"no\";s:33:\"woocommerce_enable_guest_checkout\";s:3:\"yes\";s:41:\"woocommerce_enable_myaccount_registration\";s:2:\"no\";s:49:\"woocommerce_enable_signup_and_login_from_checkout\";s:2:\"no\";s:29:\"woocommerce_logout_page_title\";b:0;s:32:\"woocommerce_myaccount_page_title\";b:0;s:30:\"woocommerce_product_attributes\";b:0;s:23:\"woocommerce_product_cat\";b:0;s:28:\"woocommerce_product_cat_list\";b:0;s:42:\"woocommerce_registration_generate_username\";s:3:\"yes\";s:27:\"woocommerce_shop_page_title\";b:0;s:33:\"woocommerce_view_order_page_title\";b:0;s:11:\"ultp-widget\";b:0;}s:19:\"site_featured_image\";s:77:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-featureimage.png\";s:17:\"site_page_builder\";s:9:\"elementor\";s:15:\"site_categories\";a:3:{i:0;a:12:{s:7:\"term_id\";i:227;s:4:\"name\";s:3:\"All\";s:4:\"slug\";s:3:\"all\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:227;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:90;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"3\";s:9:\"object_id\";i:1355;}i:1;a:12:{s:7:\"term_id\";i:225;s:4:\"name\";s:4:\"Free\";s:4:\"slug\";s:4:\"free\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:225;s:8:\"taxonomy\";s:8:\"category\";s:11:\"description\";s:0:\"\";s:6:\"parent\";i:0;s:5:\"count\";i:33;s:6:\"filter\";s:3:\"raw\";s:10:\"term_order\";s:1:\"4\";s:9:\"object_id\";i:1355;}i:2;a:12:{s:7:\"term_id\";i:145;s:4:\"name\";s:20:\"Food and Restaurants\";s:4:\"slug\";s:16:\"food-restaurants\";s:10:\"term_group\";i:0;s:16:\"term_taxonomy_id\";i:145;s:8:\"taxonomy\";s:8:\"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:2:\"15\";s:9:\"object_id\";i:1355;}}s:9:\"site_tags\";a:8:{i:132;s:3:\"Bar\";i:120;s:8:\"Business\";i:129;s:4:\"Cafe\";i:131;s:4:\"Chef\";i:127;s:4:\"Food\";i:130;s:4:\"Menu\";i:128;s:10:\"Restaurant\";i:125;s:8:\"Services\";}s:5:\"pages\";a:5:{i:106;a:4:{s:5:\"title\";s:4:\"Home\";s:19:\"fullpage-screenshot\";s:73:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-homepage.png\";s:8:\"page_url\";s:34:\"https://rishidemos.com/restaurant/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/106\";}i:115;a:4:{s:5:\"title\";s:5:\"About\";s:19:\"fullpage-screenshot\";s:70:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-about.png\";s:8:\"page_url\";s:40:\"https://rishidemos.com/restaurant/about/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/115\";}i:749;a:4:{s:5:\"title\";s:4:\"Menu\";s:19:\"fullpage-screenshot\";s:69:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-menu.png\";s:8:\"page_url\";s:39:\"https://rishidemos.com/restaurant/menu/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/749\";}i:751;a:4:{s:5:\"title\";s:12:\"Testimonials\";s:19:\"fullpage-screenshot\";s:77:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-testimonials.png\";s:8:\"page_url\";s:47:\"https://rishidemos.com/restaurant/testimonials/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/751\";}i:753;a:4:{s:5:\"title\";s:7:\"Contact\";s:19:\"fullpage-screenshot\";s:72:\"https://rishidemos.com/wp-content/uploads/2021/12/restaurant-contact.png\";s:8:\"page_url\";s:42:\"https://rishidemos.com/restaurant/contact/\";s:12:\"page-api-url\";s:57:\"https://rishidemos.com/restaurant/wp-json/wp/v2/pages/753\";}}s:16:\"required_plugins\";a:4:{i:0;a:3:{s:4:\"name\";s:14:\"Contact Form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:4:\"init\";s:36:\"contact-form-7/wp-contact-form-7.php\";}i:1;a:3:{s:4:\"name\";s:9:\"Elementor\";s:4:\"slug\";s:9:\"elementor\";s:4:\"init\";s:23:\"elementor/elementor.php\";}i:2;a:3:{s:4:\"name\";s:36:\"Mega Elements - Addons for Elementor\";s:4:\"slug\";s:34:\"mega-elements-addons-for-elementor\";s:4:\"init\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";}i:3;a:3:{s:4:\"name\";s:15:\"Rishi Companion\";s:4:\"slug\";s:15:\"rishi-companion\";s:4:\"init\";s:35:\"rishi-companion/rishi-companion.php\";}}s:12:\"widgets-data\";s:971:\"{\"sidebar-1\":{\"search-2\":{\"title\":\"\"},\"recent-posts-2\":{\"title\":\"\",\"number\":5},\"recent-comments-2\":{\"title\":\"\",\"number\":5},\"archives-2\":{\"title\":\"\",\"count\":0,\"dropdown\":0},\"categories-2\":{\"title\":\"\",\"count\":0,\"hierarchical\":0,\"dropdown\":0},\"meta-2\":{\"title\":\"\"}},\"footer-one\":{\"block-6\":{\"content\":\"<!-- wp:gallery {\\\"ids\\\":[3151],\\\"linkTo\\\":\\\"none\\\",\\\"sizeSlug\\\":\\\"full\\\",\\\"align\\\":\\\"center\\\"} -->\\n<figure class=\\\"wp-block-gallery aligncenter columns-1 is-cropped\\\"><ul class=\\\"blocks-gallery-grid\\\"><li class=\\\"blocks-gallery-item\\\"><figure><img src=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/logo-4.png\\\" alt=\\\"\\\" data-id=\\\"3151\\\" data-full-url=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/logo-4.png\\\" data-link=\\\"https:\\/\\/rishidemos.com\\/restaurant\\/logo-4\\/\\\" class=\\\"wp-image-3151\\\"\\/><\\/figure><\\/li><\\/ul><\\/figure>\\n<!-- \\/wp:gallery -->\"}},\"footer-two\":{\"nav_menu-3\":{\"nav_menu\":22}}}\";}}','yes'),(691,'wpcf7','a:1:{s:7:\"version\";s:5:\"5.8.4\";}','yes'),(699,'elementor_version','3.18.2','yes'),(700,'elementor_install_history','a:13:{s:6:\"3.15.3\";i:1694141764;s:6:\"3.16.0\";i:1694531283;s:6:\"3.16.2\";i:1694650433;s:6:\"3.16.3\";i:1694738961;s:6:\"3.16.4\";i:1695256866;s:6:\"3.16.5\";i:1696877102;s:6:\"3.16.6\";i:1697570377;s:6:\"3.17.1\";i:1698257368;s:6:\"3.17.2\";i:1698854087;s:6:\"3.17.3\";i:1699469074;s:6:\"3.18.0\";i:1701895458;s:6:\"3.18.1\";i:1701895467;s:6:\"3.18.2\";i:1702100449;}','yes'),(711,'elementor_events_db_version','1.0.0','no'),(718,'_demo_importer_plus_sites_old_customizer_data','a:67:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:1:\"3\";}s:18:\"custom_css_post_id\";s:2:\"-1\";s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";s:1:\"1\";s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";s:4:\"4210\";s:6:\"tablet\";s:4:\"4210\";s:6:\"mobile\";s:4:\"4210\";s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";s:0:\"\";}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";s:4:\"4210\";s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}','yes'),(719,'demo-importer-plus-settings','a:67:{i:0;s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:1:\"3\";}s:18:\"custom_css_post_id\";s:2:\"-1\";s:17:\"header_placements\";a:5:{s:18:\"__should_refresh__\";s:1:\"1\";s:16:\"0.51513247100506\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:6:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:7:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"ce4e805faa3280a8ba086802865e5b77\";s:0:\"\";s:15:\"headerRowHeight\";a:3:{s:6:\"mobile\";s:2:\"50\";s:6:\"tablet\";s:2:\"50\";s:7:\"desktop\";s:2:\"50\";}s:17:\"has_sticky_shrink\";s:2:\"no\";s:21:\"stickyHeaderRowShrink\";s:2:\"70\";s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:25:\"stickyHeaderRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#f9f9f9\";}}}s:32:\"f9f0f0275ead20cae998602e21e609ae\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyHeaderRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"e8f36378c01a3d5b1c68e9e906666b87\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"f2dfc716141372e5a9d29cd1830ff6f0\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:22:{s:14:\"headerRowWidth\";s:5:\"fixed\";s:32:\"c0b5c96fe02aaf6a17a4bfe3a2162084\";s:0:\"\";s:15:\"headerRowHeight\";a:4:{s:6:\"mobile\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:7:\"desktop\";s:3:\"106\";s:9:\"__changed\";a:0:{}}s:17:\"has_sticky_shrink\";s:3:\"yes\";s:21:\"stickyHeaderRowShrink\";a:4:{s:7:\"desktop\";s:2:\"70\";s:6:\"tablet\";s:2:\"70\";s:6:\"mobile\";s:2:\"70\";s:9:\"__changed\";a:0:{}}s:19:\"headerRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:30:\"transparentHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:21:\"rgba(32, 32, 32, 0.5)\";}}}s:9:\"__changed\";a:0:{}}s:25:\"stickyHeaderRowBackground\";a:14:{s:15:\"background_type\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:18:\"background_pattern\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:16:\"background_image\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:8:\"gradient\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:17:\"background_repeat\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"background_size\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:21:\"background_attachment\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"patternColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:12:\"overlayColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:15:\"backgroundColor\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}}s:9:\"__changed\";a:0:{}}s:32:\"9acede3891f2906b27e6c47c20c43ff5\";s:0:\"\";s:18:\"headerRowTopBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:29:\"transparentHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:24:\"stickyHeaderRowTopBorder\";a:4:{s:7:\"desktop\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"tablet\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:6:\"mobile\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:9:\"__changed\";a:0:{}}s:27:\"headerRowTopBorderFullWidth\";s:2:\"no\";s:32:\"497fdf608fec3010a53a42fb5039fa49\";s:0:\"\";s:21:\"headerRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:18:\"rgba(44,62,80,0.2)\";}}s:32:\"transparentHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderRowBottomBorder\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:4:\"none\";s:5:\"color\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"headerRowBottomBorderFullWidth\";s:2:\"no\";s:32:\"855cd25f2d641a029e0c664cf171dfb9\";s:0:\"\";s:15:\"headerRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:26:\"transparentHeaderRowShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(44,62,80,0.05)\";}}s:21:\"stickyHeaderRowShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:1:\"6\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"3\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(15, 25, 77, 0.05)\";}}s:9:\"__changed\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:29:{s:4:\"menu\";s:6:\"menu-1\";s:32:\"fec654ccfac24aff01daa7cfc019acc2\";s:0:\"\";s:16:\"header_menu_type\";s:6:\"type-1\";s:21:\"menu_indicator_effect\";s:7:\"default\";s:22:\"headerMenuItemsSpacing\";s:2:\"25\";s:21:\"headerMenuItemsHeight\";s:3:\"100\";s:12:\"stretch_menu\";s:2:\"no\";s:14:\"headerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"2.25\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:13:\"menuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:24:\"transparentMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:19:\"stickyMenuFontColor\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:12:\"hover-type-3\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:30:\"activeIndicatorbackgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:18:\"menuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:29:\"transparentMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:24:\"stickyMenuIndicatorColor\";a:1:{s:6:\"active\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:16:\"headerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"auto\";s:6:\"bottom\";s:4:\"auto\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:4:\"12px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:32:\"3c159376356b4fcfe171bdcb5546aa1d\";s:0:\"\";s:19:\"dropdown_items_type\";s:6:\"simple\";s:20:\"dropdownItemsSpacing\";s:2:\"15\";s:32:\"2b6f3befb82bf78612fc57ea14a9a3ba\";s:0:\"\";s:18:\"dropdown_animation\";s:6:\"type-1\";s:17:\"dropdownTopOffset\";s:2:\"15\";s:17:\"dropdownMenuWidth\";s:3:\"210\";s:18:\"headerDropdownFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:23:\"headerDropdownFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:24:\"headerDropdownBackground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:21:\"headerDropdownDivider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:6:\"dashed\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:20:\"headerDropdownShadow\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:21:\"rgba(41, 51, 61, 0.1)\";}}s:20:\"headerDropdownRadius\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"2px\";s:4:\"left\";s:3:\"2px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:0:\"\";}}}i:3;a:2:{s:2:\"id\";s:6:\"button\";s:6:\"values\";a:25:{s:18:\"header_button_type\";s:6:\"type-1\";s:18:\"header_button_size\";s:6:\"medium\";s:18:\"header_button_text\";s:18:\"Make a Reservation\";s:18:\"header_button_link\";s:1:\"#\";s:20:\"header_button_target\";s:2:\"no\";s:22:\"header_button_minwidth\";s:2:\"50\";s:25:\"header_button_ed_nofollow\";s:2:\"no\";s:26:\"header_button_ed_sponsored\";s:2:\"no\";s:25:\"header_button_ed_download\";s:2:\"no\";s:17:\"button_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"837cad4c11f14126c672cf2342821e87\";s:0:\"\";s:10:\"visibility\";a:2:{s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:21:\"headerButtonFontColor\";a:8:{s:7:\"default\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:5:\"hover\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"default_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"hover_2\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:7:\"desktop\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"tablet\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:6:\"mobile\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:9:\"__changed\";a:0:{}}s:32:\"transparentHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:27:\"stickyHeaderButtonFontColor\";a:4:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:9:\"default_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:7:\"hover_2\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"headerButtonForeground\";a:6:{s:7:\"default\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:5:\"hover\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:7:\"desktop\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"tablet\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:6:\"mobile\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:9:\"__changed\";a:0:{}}s:33:\"transparentHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:28:\"stickyHeaderButtonForeground\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:26:\"header_button_border_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:32:\"dfcfaa29089a19dc3b77cfb4a37f2263\";s:0:\"\";s:15:\"headerCTAShadow\";a:12:{s:7:\"inherit\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:4:\"blur\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"spread\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"v_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:8:\"h_offset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"inset\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"enable\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:5:\"color\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:22:\"rgba(255, 248, 247, 0)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:20:\"headerCTAShadowHover\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"20\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:2:\"10\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor7)\";}}s:15:\"headerCtaRadius\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"5px\";s:6:\"bottom\";s:3:\"5px\";s:4:\"left\";s:3:\"5px\";s:5:\"right\";s:3:\"5px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:0:{}}s:15:\"headerCtaMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:0:\"\";s:5:\"right\";s:0:\"\";s:6:\"linked\";s:1:\"1\";}s:16:\"headerCtaPadding\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:4:\"left\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:5:\"right\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"linked\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"14px\";s:6:\"bottom\";s:4:\"14px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}}}i:4;a:2:{s:2:\"id\";s:4:\"logo\";s:6:\"values\";a:33:{s:11:\"custom_logo\";a:4:{s:7:\"desktop\";s:4:\"4210\";s:6:\"tablet\";s:4:\"4210\";s:6:\"mobile\";s:4:\"4210\";s:9:\"__changed\";a:0:{}}s:9:\"logo_type\";s:4:\"logo\";s:17:\"logo_title_layout\";s:9:\"logotitle\";s:25:\"logo_title_tagline_layout\";s:16:\"logotitletagline\";s:16:\"transparent_logo\";s:0:\"\";s:11:\"sticky_logo\";a:4:{s:7:\"desktop\";s:0:\"\";s:6:\"tablet\";s:0:\"\";s:6:\"mobile\";s:0:\"\";s:9:\"__changed\";a:0:{}}s:32:\"21f3057a7a013df71cd8175327b337cd\";s:0:\"\";s:12:\"logoMaxWidth\";a:4:{s:7:\"desktop\";s:3:\"172\";s:6:\"tablet\";s:3:\"172\";s:6:\"mobile\";s:3:\"172\";s:9:\"__changed\";a:0:{}}s:32:\"0145e0cb5fd8a597351025eba8e664aa\";s:0:\"\";s:22:\"has_sticky_logo_shrink\";s:3:\"yes\";s:18:\"sticky_logo_shrink\";a:4:{s:7:\"desktop\";s:2:\"90\";s:6:\"tablet\";s:2:\"90\";s:6:\"mobile\";s:2:\"90\";s:9:\"__changed\";a:0:{}}s:32:\"34ad8ad7eff6bce87d01e608a7e44c5b\";s:0:\"\";s:14:\"has_site_title\";s:3:\"yes\";s:8:\"blogname\";s:16:\"Rishi Restaurant\";s:19:\"blogname_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"070ee8e9689bbc2db20c1ccbbc4669d6\";s:0:\"\";s:11:\"has_tagline\";s:2:\"no\";s:15:\"blogdescription\";s:38:\"Just another rishidemos.com Sites site\";s:26:\"blogdescription_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"5a6023c00116e785f2b871bc580bd03d\";s:0:\"\";s:13:\"logo_position\";s:4:\"left\";s:32:\"b1279d96e8f9d2a8cfaa2843d39f3b29\";s:0:\"\";s:9:\"siteTitle\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:3:\"0px\";s:6:\"tablet\";s:3:\"0px\";s:6:\"mobile\";s:3:\"0px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:3:\"0em\";s:14:\"text-transform\";s:4:\"none\";s:15:\"text-decoration\";s:4:\"none\";}s:14:\"siteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:25:\"transparentSiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:20:\"stickySiteTitleColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:32:\"e790fd23c5ff32f238b30c92ea5de072\";s:0:\"\";s:11:\"siteTagline\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n5\";s:4:\"size\";s:4:\"13px\";s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"siteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:27:\"transparentSiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:22:\"stickySiteTaglineColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}s:32:\"1f572f4169a289787add52a52c081d2c\";s:0:\"\";s:16:\"headerLogoMargin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:1:\"0\";s:4:\"left\";s:1:\"0\";s:5:\"right\";s:1:\"0\";s:6:\"linked\";s:0:\"\";}}}i:5;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:6:\"values\";a:12:{s:18:\"offcanvas_behavior\";s:5:\"panel\";s:19:\"side_panel_position\";s:5:\"right\";s:16:\"side_panel_width\";a:3:{s:7:\"desktop\";s:5:\"500px\";s:6:\"tablet\";s:4:\"65vw\";s:6:\"mobile\";s:4:\"90vw\";}s:32:\"025a7005715a2df90eba3899ce0f0544\";s:0:\"\";s:36:\"offcanvas_content_vertical_alignment\";s:10:\"flex-start\";s:25:\"offcanvasContentAlignment\";s:10:\"flex-start\";s:19:\"offcanvasBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:17:\"offcanvasBackdrop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:19:\"rgba(255,255,255,0)\";}}}s:17:\"headerPanelShadow\";a:4:{s:7:\"desktop\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:1:\"1\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"tablet\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:6:\"mobile\";a:8:{s:7:\"inherit\";s:0:\"\";s:4:\"blur\";s:2:\"70\";s:6:\"spread\";s:1:\"0\";s:8:\"v_offset\";s:1:\"0\";s:8:\"h_offset\";s:1:\"0\";s:5:\"inset\";s:0:\"\";s:6:\"enable\";s:0:\"\";s:5:\"color\";a:1:{s:5:\"color\";s:19:\"rgba(0, 0, 0, 0.35)\";}}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:32:\"81b63343b25444a35fb394efdc38f722\";s:0:\"\";s:23:\"menu_close_button_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor2)\";}}s:29:\"menu_close_button_shape_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:11:\"transparent\";}s:5:\"hover\";a:1:{s:5:\"color\";s:23:\"CT_CSS_SKIP_RULEDEFAULT\";}}}}i:6;a:2:{s:2:\"id\";s:11:\"mobile-menu\";s:6:\"values\";a:8:{s:4:\"menu\";s:6:\"menu-1\";s:16:\"mobile_menu_type\";s:6:\"type-1\";s:14:\"mobileMenuFont\";a:7:{s:6:\"family\";s:7:\"Default\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:3:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"16px\";}s:11:\"line-height\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:15:\"mobileMenuColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:22:\"mobile_menu_child_size\";s:4:\"14px\";s:19:\"mobile_menu_divider\";a:3:{s:5:\"width\";s:1:\"1\";s:5:\"style\";s:5:\"solid\";s:5:\"color\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}}s:32:\"fd6639b6cbe587c9a823889d282d64d9\";s:0:\"\";s:16:\"mobileMenuMargin\";a:5:{s:3:\"top\";s:0:\"\";s:6:\"bottom\";s:0:\"\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}}}}s:8:\"settings\";a:11:{s:17:\"has_sticky_header\";s:3:\"yes\";s:11:\"sticky_rows\";s:6:\"middle\";s:16:\"sticky_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f17add1b53a8fb75822d4d77e206d6b6\";s:0:\"\";s:22:\"has_transparent_header\";s:3:\"yes\";s:22:\"transparent_conditions\";a:5:{i:0;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"106\";}}i:1;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"115\";}}i:2;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"749\";}}i:3;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"751\";}}i:4;a:3:{s:4:\"type\";s:7:\"include\";s:4:\"rule\";s:8:\"page_ids\";s:7:\"payload\";a:1:{s:7:\"post_id\";s:3:\"753\";}}}s:21:\"transparent_behaviour\";a:2:{s:7:\"desktop\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:32:\"f4efdc54c3ec194f78be04623ad1b1ff\";s:0:\"\";s:32:\"27630eaf554f92c7d56b6effa92e82cf\";s:0:\"\";s:32:\"70f3e4bb3e86db2de148fdd310aa578e\";s:0:\"\";s:32:\"a4a09322a41137af624d2231b37f72ef\";s:0:\"\";}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:2:{i:0;s:4:\"menu\";i:1;s:6:\"button\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:2:{i:0;s:11:\"mobile-menu\";i:1;s:6:\"button\";}}}}}}i:1;a:6:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:10:\"placements\";s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}s:7:\"desktop\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"socials\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"menu\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}}}}s:6:\"mobile\";a:4:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:6:\"search\";}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:1:{i:0;s:4:\"logo\";}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:1:{i:0;s:7:\"trigger\";}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:10:\"placements\";a:5:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:0:{}}i:1;a:2:{s:2:\"id\";s:6:\"middle\";s:5:\"items\";a:0:{}}i:2;a:2:{s:2:\"id\";s:3:\"end\";s:5:\"items\";a:0:{}}i:3;a:2:{s:2:\"id\";s:12:\"start-middle\";s:5:\"items\";a:0:{}}i:4;a:2:{s:2:\"id\";s:10:\"end-middle\";s:5:\"items\";a:0:{}}}}i:3;a:2:{s:2:\"id\";s:9:\"offcanvas\";s:10:\"placements\";a:1:{i:0;a:2:{s:2:\"id\";s:5:\"start\";s:5:\"items\";a:1:{i:0;s:11:\"mobile-menu\";}}}}}}}s:23:\"__should_refresh_item__\";s:16:\"mobile-menu:menu\";}s:12:\"colorPalette\";a:10:{s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}s:15:\"current_palette\";s:9:\"palette-1\";s:8:\"palettes\";a:5:{i:0;a:9:{s:2:\"id\";s:9:\"palette-1\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#3e3e3e\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#000000\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff785b\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#ff9f8a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#FFFFFF\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#a1a1a1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#fff8f7\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#202020\";}}i:1;a:9:{s:2:\"id\";s:9:\"palette-2\";s:6:\"color1\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.8)\";}s:6:\"color2\";a:1:{s:5:\"color\";s:20:\"rgba(0, 26, 26, 0.9)\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#03a6a6\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#001a1a\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E5E8E8\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F4FCFC\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FEFEFE\";}}i:2;a:9:{s:2:\"id\";s:9:\"palette-3\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#1e2436\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#242b40\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#ff8b3c\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#8E919A\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E9E9EC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FFF7F1\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#FFFBF9\";}}i:3;a:9:{s:2:\"id\";s:9:\"palette-4\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#8D8D8D\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#31332e\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#8cb369\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#A3C287\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#E8F0E1\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#F3F7F0\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}i:4;a:9:{s:2:\"id\";s:9:\"palette-5\";s:6:\"color1\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color2\";a:1:{s:5:\"color\";s:7:\"#21201d\";}s:6:\"color3\";a:1:{s:5:\"color\";s:7:\"#dea200\";}s:6:\"color4\";a:1:{s:5:\"color\";s:7:\"#343330\";}s:6:\"color5\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}s:6:\"color6\";a:1:{s:5:\"color\";s:7:\"#F8ECCC\";}s:6:\"color7\";a:1:{s:5:\"color\";s:7:\"#FDF8ED\";}s:6:\"color8\";a:1:{s:5:\"color\";s:7:\"#fdfcf7\";}}}}s:12:\"genLinkColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:15:\"site_background\";a:4:{s:7:\"desktop\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"tablet\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:6:\"mobile\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:9:\"__changed\";a:0:{}}s:18:\"topButtonIconColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}s:16:\"ed_scroll_to_top\";s:3:\"yes\";s:17:\"footer_placements\";a:7:{s:18:\"0.4652917546371895\";s:6:\"update\";s:18:\"0.5902537872139022\";s:6:\"update\";s:18:\"0.4946048058250603\";s:6:\"update\";s:15:\"current_section\";s:6:\"type-1\";s:8:\"sections\";a:2:{i:0;a:5:{s:2:\"id\";s:6:\"type-1\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:3:{i:0;a:0:{}i:1;a:2:{i:0;s:13:\"widget-area-1\";i:1;s:4:\"menu\";}i:2;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:4:{s:10:\"middle-row\";a:2:{s:2:\"id\";s:10:\"middle-row\";s:6:\"values\";a:9:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:1:\"f\";i:1;s:1:\"l\";i:2;s:1:\"e\";i:3;s:1:\"x\";i:4;s:1:\"-\";i:5;s:1:\"s\";i:6;s:1:\"t\";i:7;s:1:\"a\";i:8;s:1:\"r\";i:9;s:1:\"t\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:22:\"footerWidgetsTitleFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";s:4:\"16px\";s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";s:5:\"0.4px\";s:14:\"text-transform\";s:9:\"uppercase\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:17:\"footerWidgetsFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"16px\";s:6:\"tablet\";s:4:\"16px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";a:4:{s:7:\"desktop\";s:3:\"1.5\";s:6:\"tablet\";s:3:\"1.5\";s:6:\"mobile\";s:3:\"1.5\";s:9:\"__changed\";a:0:{}}s:14:\"letter-spacing\";s:16:\"CT_CSS_SKIP_RULE\";s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:16:\"3_columns_layout\";a:4:{s:7:\"desktop\";s:14:\"repeat(3, 1fr)\";s:6:\"tablet\";s:7:\"initial\";s:6:\"mobile\";s:7:\"initial\";s:9:\"__changed\";a:0:{}}s:14:\"footerItemsGap\";a:4:{s:7:\"desktop\";s:2:\"30\";s:6:\"tablet\";s:2:\"40\";s:6:\"mobile\";s:2:\"40\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"40px\";s:9:\"__changed\";a:0:{}}s:14:\"footerRowWidth\";s:5:\"fixed\";s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}s:12:\"rowFontColor\";a:4:{s:7:\"desktop\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"tablet\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:6:\"mobile\";a:3:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}s:12:\"link_initial\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}s:10:\"link_hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:9:\"__changed\";a:0:{}}}}s:10:\"bottom-row\";a:2:{s:2:\"id\";s:10:\"bottom-row\";s:6:\"values\";a:3:{s:29:\"footer_row_vertical_alignment\";a:14:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:0:{}}s:19:\"rowTopBottomSpacing\";a:4:{s:6:\"mobile\";s:4:\"15px\";s:6:\"tablet\";s:4:\"25px\";s:7:\"desktop\";s:4:\"30px\";s:9:\"__changed\";a:0:{}}s:19:\"footerRowBackground\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";s:1:\"0\";s:1:\"y\";s:1:\"0\";}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor8)\";}}}}}s:4:\"menu\";a:2:{s:2:\"id\";s:4:\"menu\";s:6:\"values\";a:9:{s:4:\"menu\";s:11:\"footer-menu\";s:22:\"footerMenuItemsSpacing\";a:4:{s:7:\"desktop\";s:2:\"25\";s:6:\"tablet\";s:2:\"25\";s:6:\"mobile\";s:2:\"25\";s:9:\"__changed\";a:0:{}}s:27:\"footerMenuVerticalAlignment\";a:20:{i:0;s:6:\"center\";i:1;s:6:\"center\";i:2;s:6:\"center\";i:3;s:6:\"center\";i:4;s:6:\"center\";i:5;s:6:\"center\";i:6;s:6:\"center\";i:7;s:6:\"center\";i:8;s:6:\"center\";i:9;s:6:\"center\";i:10;s:6:\"center\";i:11;s:6:\"center\";i:12;s:6:\"center\";i:13;s:6:\"center\";i:14;s:6:\"center\";i:15;s:6:\"center\";s:7:\"desktop\";s:6:\"center\";s:6:\"tablet\";s:6:\"center\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:12:\"stretch_menu\";s:2:\"no\";s:19:\"footerMenuFontColor\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor6)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}}s:14:\"footerMenuFont\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"14px\";s:6:\"tablet\";s:4:\"14px\";s:6:\"mobile\";s:4:\"14px\";s:9:\"__changed\";a:0:{}}s:11:\"line-height\";s:3:\"1.3\";s:14:\"letter-spacing\";s:5:\"0.3px\";s:14:\"text-transform\";s:6:\"normal\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:19:\"footerMenuAlignment\";a:14:{i:0;s:8:\"flex-end\";i:1;s:8:\"flex-end\";i:2;s:8:\"flex-end\";i:3;s:8:\"flex-end\";i:4;s:8:\"flex-end\";i:5;s:8:\"flex-end\";i:6;s:8:\"flex-end\";i:7;s:8:\"flex-end\";i:8;s:8:\"flex-end\";i:9;s:8:\"flex-end\";s:7:\"desktop\";s:10:\"flex-start\";s:6:\"tablet\";s:8:\"flex-end\";s:6:\"mobile\";s:6:\"center\";s:9:\"__changed\";a:2:{i:0;s:6:\"tablet\";i:1;s:6:\"mobile\";}}s:16:\"footerMenuMargin\";a:9:{s:3:\"top\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"bottom\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:4:\"left\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:5:\"right\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"linked\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:7:\"desktop\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:2:\"px\";s:6:\"bottom\";s:2:\"px\";s:4:\"left\";s:2:\"px\";s:5:\"right\";s:2:\"px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:20:\"footer_hide_menu_one\";s:0:\"\";}}s:13:\"widget-area-1\";a:2:{s:2:\"id\";s:13:\"widget-area-1\";s:6:\"values\";a:1:{s:22:\"footer_hide_widget_one\";s:0:\"\";}}}s:8:\"settings\";a:0:{}}i:1;a:5:{s:2:\"id\";s:6:\"type-2\";s:4:\"mode\";s:7:\"columns\";s:4:\"rows\";a:3:{i:0;a:2:{s:2:\"id\";s:7:\"top-row\";s:7:\"columns\";a:2:{i:0;a:0:{}i:1;a:0:{}}}i:1;a:2:{s:2:\"id\";s:10:\"middle-row\";s:7:\"columns\";a:4:{i:0;a:0:{}i:1;a:0:{}i:2;a:0:{}i:3;a:0:{}}}i:2;a:2:{s:2:\"id\";s:10:\"bottom-row\";s:7:\"columns\";a:1:{i:0;a:1:{i:0;s:9:\"copyright\";}}}}s:5:\"items\";a:0:{}s:8:\"settings\";a:0:{}}}s:23:\"__should_refresh_item__\";s:9:\"menu:menu\";s:18:\"__should_refresh__\";s:0:\"\";}s:14:\"rootTypography\";a:7:{s:6:\"family\";s:7:\"Poppins\";s:9:\"variation\";s:2:\"n4\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"18px\";s:6:\"tablet\";s:4:\"18px\";s:6:\"mobile\";s:4:\"16px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:4:\"1.75\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h1Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"50px\";s:6:\"tablet\";s:4:\"50px\";s:6:\"mobile\";s:4:\"36px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h2Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n8\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"45px\";s:6:\"tablet\";s:4:\"45px\";s:6:\"mobile\";s:4:\"30px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h3Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"35px\";s:6:\"tablet\";s:4:\"35px\";s:6:\"mobile\";s:4:\"28px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h4Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"30px\";s:6:\"tablet\";s:4:\"30px\";s:6:\"mobile\";s:4:\"24px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h5Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"24px\";s:6:\"tablet\";s:4:\"24px\";s:6:\"mobile\";s:4:\"22px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:12:\"h6Typography\";a:7:{s:6:\"family\";s:11:\"Nunito Sans\";s:9:\"variation\";s:2:\"n7\";s:4:\"size\";a:4:{s:7:\"desktop\";s:4:\"20px\";s:6:\"tablet\";s:4:\"20px\";s:6:\"mobile\";s:4:\"18px\";s:9:\"__changed\";a:1:{i:0;s:6:\"mobile\";}}s:11:\"line-height\";s:3:\"1.5\";s:14:\"letter-spacing\";a:4:{s:7:\"desktop\";s:6:\"0.25px\";s:6:\"tablet\";s:6:\"0.25px\";s:6:\"mobile\";s:6:\"0.25px\";s:9:\"__changed\";a:0:{}}s:14:\"text-transform\";s:16:\"CT_CSS_SKIP_RULE\";s:15:\"text-decoration\";s:16:\"CT_CSS_SKIP_RULE\";}s:11:\"custom_logo\";s:4:\"4210\";s:15:\"container_width\";a:4:{s:7:\"desktop\";s:6:\"1200px\";s:6:\"tablet\";s:5:\"992px\";s:6:\"mobile\";s:5:\"420px\";s:9:\"__changed\";a:0:{}}s:16:\"blog_page_layout\";s:4:\"grid\";s:27:\"archive_blog_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"k8gqgEIEScLvAxZRYgiEB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"8-EKTM4c-xSyd_Qdlnsdz\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"LLKasyAivOFHZf49kp8KC\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"GO6Mwz8zzuLjjDgpZjqtn\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:0:\"\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"muNh6MqHPk7p5w3n1Rd-q\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"1NglsHp2I9lijggpnFNtQ\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"aGowL6SWSivdAqN23q4Le\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"mDXW86v_sqBrT_tK2ZLFj\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"6WbA2IZaxjH_6ztL7FSXB\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"aNgjgNy0LLcnI41QEGg9X\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:16:\"Continue Reading\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"dJLohCFFgfqesOfDrFG99\";}}s:18:\"blog_posts_per_row\";s:1:\"2\";s:14:\"blog_container\";s:20:\"full_width_contained\";s:19:\"blog_sidebar_layout\";s:13:\"right-sidebar\";s:26:\"blog_container_streched_ed\";s:2:\"no\";s:16:\"botton_roundness\";a:4:{s:7:\"desktop\";s:3:\"5px\";s:6:\"tablet\";s:3:\"5px\";s:6:\"mobile\";s:3:\"5px\";s:9:\"__changed\";a:0:{}}s:14:\"button_padding\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:4:\"18px\";s:6:\"bottom\";s:4:\"18px\";s:4:\"left\";s:4:\"35px\";s:5:\"right\";s:4:\"35px\";s:6:\"linked\";s:0:\"\";}s:9:\"__changed\";a:0:{}}s:19:\"archive_page_layout\";s:4:\"grid\";s:22:\"archive_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"eXBFPxK5TCok-21JfzhvB\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"cjn8XCD9FaVYslf0T9JCD\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"vfRWxYtBJ3KTMt3IHrMNm\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"IJY2ytD1tf5gx_hPXPQA_\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Z8-1REvRsCoB2AcVa6mZ9\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"AXhtmqqQXTfm6GBv57UDQ\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"_lRUmPdKK3IovE1vq5-zF\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"9A6S92-zjTqiKZsjjvj8g\";}}s:21:\"archive_posts_per_row\";s:1:\"3\";s:22:\"archive_sidebar_layout\";s:10:\"no-sidebar\";s:14:\"archive_layout\";s:20:\"full_width_contained\";s:26:\"archive_layout_streched_ed\";s:2:\"no\";s:22:\"breadcrumbs_ed_archive\";s:2:\"no\";s:21:\"archive_page_title_ed\";s:2:\"no\";s:22:\"archive_page_search_ed\";s:2:\"no\";s:18:\"search_page_layout\";s:4:\"grid\";s:21:\"search_sidebar_layout\";s:10:\"no-sidebar\";s:21:\"search_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"cnuGFyDzkrII5Z30iwr5B\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-SJtvtT2sMS9BDjngh1xM\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Wdx9PEi5E2SyjuhWNxIyp\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"p86jo9X-inFDyQa0o8_kv\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"iMjLxllnWPuhtp6Kiqpde\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"RIY56UceRdE2oeR0B13RW\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"J9ba5zJzXj0ME6Fc9SL5d\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"VbmaqH-svBJNuaXk1Y0VZ\";}}s:13:\"search_layout\";s:20:\"full_width_contained\";s:25:\"search_layout_streched_ed\";s:2:\"no\";s:21:\"search_page_search_ed\";s:2:\"no\";s:17:\"ed_link_highlight\";s:3:\"yes\";s:16:\"blog_post_layout\";s:20:\"full_width_contained\";s:10:\"ed_comment\";s:2:\"no\";s:31:\"single_blog_post_post_structure\";a:4:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"2Vv3SCVklNkajbV7iCDo2\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"-y65DdachuX4V4kEjpGu2\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"Kds3tlhXVO9RtRJyHBVWD\";}i:2;a:4:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:4:\"__id\";s:21:\"IAYRTENH5Cr9U8DSAnijH\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:6:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:0:\"\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";s:4:\"__id\";s:21:\"TcCJu8P6C1U2Lse0_27kx\";}i:1;a:5:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";s:4:\"__id\";s:21:\"y0bnrZyV-_EfUGcFpjhst\";}i:2;a:3:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";s:4:\"__id\";s:21:\"dbPKD81iiVX1Bo-Ti49l-\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"OFdj-ICxFVsQpjiShOYgr\";}}s:18:\"author_page_layout\";s:4:\"grid\";s:21:\"author_post_structure\";a:7:{i:0;a:6:{s:2:\"id\";s:14:\"featured_image\";s:7:\"enabled\";s:1:\"1\";s:20:\"featured_image_ratio\";s:3:\"4/3\";s:19:\"featured_image_size\";s:4:\"full\";s:25:\"featured_image_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:4:\"__id\";s:21:\"Y960D0irqM5hLqLZRrxHC\";}i:1;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:1:{i:0;a:6:{s:2:\"id\";s:10:\"categories\";s:7:\"enabled\";s:1:\"1\";s:7:\"divider\";s:3:\"dot\";s:13:\"divider_style\";s:6:\"normal\";s:13:\"divider_color\";a:2:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor3)\";}s:5:\"hover\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor4)\";}}s:4:\"__id\";s:21:\"7a0ijXCD85E5W75wh34NE\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"RAqNGd0fFn1Wuv8GopAAN\";}i:2;a:5:{s:2:\"id\";s:12:\"custom_title\";s:7:\"enabled\";s:1:\"1\";s:11:\"heading_tag\";s:2:\"h2\";s:9:\"font_size\";a:3:{s:7:\"desktop\";s:4:\"28px\";s:6:\"tablet\";s:4:\"28px\";s:6:\"mobile\";s:4:\"28px\";}s:4:\"__id\";s:21:\"H_SDj9gUVDNQiH0_yUjoP\";}i:3;a:5:{s:2:\"id\";s:11:\"custom_meta\";s:7:\"enabled\";s:1:\"1\";s:13:\"meta_elements\";a:3:{i:0;a:5:{s:2:\"id\";s:6:\"author\";s:7:\"enabled\";s:1:\"1\";s:5:\"label\";s:2:\"By\";s:17:\"has_author_avatar\";s:2:\"no\";s:11:\"avatar_size\";s:2:\"34\";}i:1;a:4:{s:2:\"id\";s:9:\"post_date\";s:7:\"enabled\";s:1:\"1\";s:18:\"date_format_source\";s:7:\"default\";s:11:\"date_format\";s:6:\"M j, Y\";}i:2;a:2:{s:2:\"id\";s:8:\"comments\";s:7:\"enabled\";s:1:\"1\";}}s:12:\"meta_divider\";s:6:\"circle\";s:4:\"__id\";s:21:\"anRpPi4j11hqCC0Ii9D34\";}i:4;a:5:{s:2:\"id\";s:7:\"excerpt\";s:7:\"enabled\";s:1:\"1\";s:12:\"post_content\";s:7:\"excerpt\";s:14:\"excerpt_length\";s:2:\"30\";s:4:\"__id\";s:21:\"5EZjgCEHi5RgLhufbcfLU\";}i:5;a:4:{s:2:\"id\";s:7:\"divider\";s:7:\"enabled\";s:0:\"\";s:14:\"divider_margin\";a:5:{s:3:\"top\";s:1:\"0\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"auto\";s:5:\"right\";s:4:\"auto\";s:6:\"linked\";s:1:\"1\";}s:4:\"__id\";s:21:\"m1DZulS4lMqGZzPWUpWGu\";}i:6;a:6:{s:2:\"id\";s:9:\"read_more\";s:7:\"enabled\";s:1:\"1\";s:11:\"button_type\";s:6:\"simple\";s:14:\"read_more_text\";s:9:\"Read More\";s:15:\"read_more_arrow\";s:3:\"yes\";s:4:\"__id\";s:21:\"undXM0IejnjOvFlUKrciz\";}}s:20:\"author_posts_per_row\";s:1:\"3\";s:21:\"author_sidebar_layout\";s:10:\"no-sidebar\";s:13:\"author_layout\";s:20:\"full_width_contained\";s:19:\"back_top_visibility\";a:3:{s:7:\"desktop\";s:1:\"1\";s:6:\"tablet\";s:1:\"1\";s:6:\"mobile\";s:1:\"1\";}s:28:\"widgets_content_area_spacing\";a:4:{s:7:\"desktop\";a:5:{s:3:\"top\";s:4:\"10px\";s:6:\"bottom\";s:4:\"20px\";s:4:\"left\";s:4:\"20px\";s:5:\"right\";s:4:\"10px\";s:6:\"linked\";s:1:\"1\";}s:6:\"tablet\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:6:\"mobile\";a:5:{s:3:\"top\";s:3:\"0px\";s:6:\"bottom\";s:3:\"0px\";s:4:\"left\";s:3:\"0px\";s:5:\"right\";s:3:\"0px\";s:6:\"linked\";s:1:\"1\";}s:9:\"__changed\";a:1:{i:0;s:6:\"tablet\";}}s:13:\"primary_color\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor1)\";}}s:22:\"missing_img_dimensions\";s:3:\"yes\";s:8:\"ed_emoji\";s:3:\"yes\";s:17:\"ed_self_pingbacks\";s:3:\"yes\";s:10:\"ed_rssfeed\";s:3:\"yes\";s:16:\"ed_rssfeed_links\";s:3:\"yes\";s:9:\"ed_embeds\";s:3:\"yes\";s:17:\"ed_local_gravatar\";s:3:\"yes\";s:18:\"ed_gutenberg_style\";s:3:\"yes\";s:14:\"ed_preload_css\";s:2:\"no\";s:11:\"ed_defer_js\";s:3:\"yes\";s:11:\"ed_delay_js\";s:3:\"yes\";s:21:\"ed_google_fonts_local\";s:3:\"yes\";s:22:\"ed_preload_local_fonts\";s:3:\"yes\";}','yes'),(724,'demo_importer_plus_imported_wxr_id','7','yes'),(2503,'wp_calendar_block_has_published_posts','1','yes'),(2672,'category_children','a:0:{}','yes'),(2673,'elementor_library_category_children','a:0:{}','yes'),(2675,'_demo_importer_posts_mapping','a:2:{s:10:\"attachment\";a:47:{i:4;i:8;i:6;i:9;i:7;i:10;i:8;i:11;i:9;i:12;i:10;i:13;i:11;i:14;i:12;i:15;i:13;i:16;i:14;i:17;i:15;i:18;i:16;i:19;i:17;i:20;i:18;i:21;i:19;i:22;i:20;i:23;i:21;i:24;i:22;i:25;i:23;i:26;i:24;i:27;i:25;i:28;i:26;i:29;i:27;i:30;i:28;i:31;i:30;i:32;i:31;i:33;i:32;i:34;i:33;i:35;i:34;i:36;i:35;i:37;i:36;i:38;i:37;i:39;i:38;i:40;i:39;i:41;i:40;i:42;i:41;i:43;i:42;i:44;i:43;i:45;i:44;i:46;i:45;i:47;i:46;i:48;i:47;i:49;i:48;i:50;i:49;i:51;i:50;i:52;i:51;i:53;i:52;i:54;}s:17:\"elementor_library\";a:1:{i:29;i:4211;}}','yes'),(2676,'_demo_importer_terms_mapping','a:3:{s:8:\"category\";a:5:{i:20;i:2;i:23;i:3;i:18;i:4;i:19;i:5;i:21;i:6;}s:22:\"elementor_library_type\";a:1:{i:2;i:7;}s:8:\"nav_menu\";a:2:{i:22;i:8;i:3;i:9;}}','yes'),(2683,'_demo_importer_plus_old_site_options','a:39:{s:10:\"custom_log\";s:73:\"https://rishidemos.com/wp-content/uploads/sites/9/2021/11/Logo-Whhite.png\";s:20:\"elementor_active_kit\";s:2:\"29\";s:25:\"elementor_container_width\";s:4:\"1190\";s:21:\"elementor_cpt_support\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:26:\"elementor_css_print_method\";s:8:\"internal\";s:31:\"elementor_disable_color_schemes\";s:3:\"yes\";s:36:\"elementor_disable_typography_schemes\";s:3:\"yes\";s:31:\"elementor_default_generic_fonts\";s:10:\"Sans-serif\";s:28:\"elementor_editor_break_lines\";s:0:\"\";s:28:\"elementor_exclude_user_roles\";s:0:\"\";s:31:\"elementor_global_image_lightbox\";s:3:\"yes\";s:23:\"elementor_load_fa4_shim\";s:3:\"yes\";s:29:\"elementor_page_title_selector\";s:14:\"h1.entry-title\";s:22:\"elementor_scheme_color\";a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}s:29:\"elementor_scheme_color-picker\";a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}s:27:\"elementor_scheme_typography\";a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}s:31:\"elementor_space_between_widgets\";s:1:\"0\";s:37:\"elementor_stretched_section_container\";s:0:\"\";s:18:\"nav_menu_locations\";a:1:{s:6:\"menu-1\";s:6:\"menu-1\";}s:14:\"page_for_posts\";s:4:\"Blog\";s:13:\"page_on_front\";s:4:\"Home\";s:13:\"show_on_front\";s:4:\"page\";s:27:\"woocommerce_cart_page_title\";s:0:\"\";s:38:\"woocommerce_change_password_page_title\";s:0:\"\";s:31:\"woocommerce_checkout_page_title\";s:0:\"\";s:35:\"woocommerce_edit_address_page_title\";s:0:\"\";s:42:\"woocommerce_enable_checkout_login_reminder\";s:2:\"no\";s:33:\"woocommerce_enable_guest_checkout\";s:3:\"yes\";s:41:\"woocommerce_enable_myaccount_registration\";s:2:\"no\";s:49:\"woocommerce_enable_signup_and_login_from_checkout\";s:2:\"no\";s:29:\"woocommerce_logout_page_title\";s:0:\"\";s:32:\"woocommerce_myaccount_page_title\";s:0:\"\";s:30:\"woocommerce_product_attributes\";s:0:\"\";s:23:\"woocommerce_product_cat\";s:0:\"\";s:28:\"woocommerce_product_cat_list\";s:0:\"\";s:42:\"woocommerce_registration_generate_username\";s:3:\"yes\";s:27:\"woocommerce_shop_page_title\";s:0:\"\";s:33:\"woocommerce_view_order_page_title\";s:0:\"\";s:11:\"ultp-widget\";s:0:\"\";}','yes'),(2684,'elementor_active_kit','4211','yes'),(2685,'elementor_container_width','1190','yes'),(2686,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(2687,'elementor_css_print_method','internal','yes'),(2688,'elementor_disable_color_schemes','yes','yes'),(2689,'elementor_disable_typography_schemes','yes','yes'),(2690,'elementor_default_generic_fonts','Sans-serif','yes'),(2691,'elementor_global_image_lightbox','yes','yes'),(2692,'elementor_load_fa4_shim','yes','yes'),(2693,'elementor_page_title_selector','h1.entry-title','yes'),(2694,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(2695,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(2696,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(2703,'woocommerce_enable_checkout_login_reminder','no','yes'),(2704,'woocommerce_enable_guest_checkout','yes','yes'),(2705,'woocommerce_enable_myaccount_registration','no','yes'),(2706,'woocommerce_enable_signup_and_login_from_checkout','no','yes'),(2707,'woocommerce_registration_generate_username','yes','yes'),(2725,'_demo_importer_plus_old_widgets_data','a:9:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:11:{i:0;s:7:\"block-2\";i:1;s:7:\"block-3\";i:2;s:7:\"block-4\";i:3;s:7:\"block-5\";i:4;s:7:\"block-6\";i:5;s:8:\"search-1\";i:6;s:14:\"recent-posts-1\";i:7;s:17:\"recent-comments-1\";i:8;s:10:\"archives-1\";i:9;s:12:\"categories-1\";i:10;s:6:\"meta-1\";}s:10:\"footer-one\";a:1:{i:0;s:7:\"block-7\";}s:10:\"footer-two\";a:1:{i:0;s:10:\"nav_menu-1\";}s:12:\"footer-three\";a:0:{}s:11:\"footer-four\";a:0:{}s:11:\"footer-five\";a:0:{}s:10:\"footer-six\";a:0:{}s:13:\"array_version\";i:3;}','no'),(2729,'demo_importer_plus_sites_import_complete','yes','yes'),(2738,'jetpack_content_post_details_date','1','yes'),(2739,'jetpack_content_post_details_categories','1','yes'),(2740,'jetpack_content_post_details_tags','1','yes'),(2741,'jetpack_content_post_details_author','1','yes'),(2742,'jetpack_content_post_details_comment','1','yes'),(2921,'jp_sync_retry_after_sync','','no'),(2922,'jp_sync_error_log_sync','a:1:{s:15:\"1694058511.7655\";O:8:\"WP_Error\":3:{s:6:\"errors\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;s:53:\"There is another request running for the same blog ID\";}}s:10:\"error_data\";a:1:{s:24:\"concurrent_request_error\";a:5:{s:7:\"headers\";a:10:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Thu, 07 Sep 2023 03:48:31 GMT\";s:12:\"content-type\";s:23:\"text/xml; charset=UTF-8\";s:4:\"vary\";a:2:{i:0;s:15:\"Accept-Encoding\";i:1;s:20:\"accept, content-type\";}s:8:\"x-hacker\";s:108:\"If you\'re reading this, you should visit automattic.com/jobs and apply to join the fun, mention this header.\";s:11:\"host-header\";s:13:\"WordPress.com\";s:11:\"retry-after\";s:1:\"1\";s:16:\"content-encoding\";s:2:\"br\";s:4:\"x-ac\";s:17:\"4.sea _bur BYPASS\";s:25:\"strict-transport-security\";s:16:\"max-age=31536000\";}s:4:\"body\";s:461:\"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<methodResponse>\n  <fault>\n    <value>\n      <struct>\n        <member>\n          <name>faultCode</name>\n          <value><int>400</int></value>\n        </member>\n        <member>\n          <name>faultString</name>\n          <value><string>Jetpack: [concurrent_request_error] There is another request running for the same blog ID</string></value>\n        </member>\n      </struct>\n    </value>\n  </fault>\n</methodResponse>\n\";s:8:\"response\";a:2:{s:4:\"code\";i:200;s:7:\"message\";s:2:\"OK\";}s:7:\"cookies\";a:0:{}s:8:\"filename\";N;}}s:18:\"\0*\0additional_data\";a:1:{s:24:\"concurrent_request_error\";a:1:{i:0;i:400;}}}}','yes'),(3139,'_elementor_installed_time','1694094270','yes');
INSERT INTO `staging_ajj_options` VALUES (3140,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:27:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:9:\"portfolio\";i:15;s:7:\"pricing\";i:16;s:15:\"product archive\";i:17;s:5:\"Quote\";i:18;s:15:\"Service Details\";i:19;s:8:\"services\";i:20;s:11:\"single page\";i:21;s:11:\"single post\";i:22;s:14:\"single product\";i:23;s:5:\"stats\";i:24;s:9:\"subscribe\";i:25;s:4:\"team\";i:26;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:19:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:19:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:19:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:19:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:19:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:19:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:19:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:19:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:19:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:19:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:19:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:19:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:19:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:19:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:19:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:19:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:19:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:19:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:19:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:19:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:19:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:19:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:19:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:19:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:19:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:19:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:19:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic |  Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:19:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:19:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:19:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:19:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:19:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:19:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:19:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:19:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:19:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:19:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving &#038; Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:19:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:19:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:19:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:19:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:19:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar  | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:19:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In  | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:19:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:19:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:19:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App &#038; SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:19:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:19:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:19:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:19:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:19:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:19:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:19:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:19:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:19:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:19:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:19:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:19:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health &#038; Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:19:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:19:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:19:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:19:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital &#038; Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:19:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:19:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:19:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:19:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:19:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:19:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:19:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:19:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:19:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:19:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:19:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:19:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:19:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:19:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:19:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:19:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:19:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:19:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:19:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:19:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In  | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:19:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:19:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:19:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:19:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:19:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:19:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:19:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:19:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:19:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:19:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:19:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:19:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:19:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:19:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:19:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:19:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:19:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:19:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:19:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:19:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:19:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:19:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:19:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health &#038; Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:19:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:19:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:19:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:19:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:19:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:19:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:19:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:19:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:19:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:19:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club &#8211; NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:19:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot &#8211; NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:19:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors &#8211; NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:19:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends &#8211; NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:19:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe &#8211; Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:19:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:19:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:19:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe &#8211; Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:19:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:19:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe &#8211; Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:19:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe &#8211; Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:19:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe &#8211; Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:19:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:19:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health &#038; Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:19:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:19:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details  | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:19:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:19:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health &#038; Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:19:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:19:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:19:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:19:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:19:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:19:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:19:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:19:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:19:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:19:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:19:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:19:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic |  Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:19:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:19:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:19:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:19:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic |  Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:19:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:19:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:19:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:19:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:19:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:19:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:19:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:19:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:19:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:19:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:19:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:19:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar &#8211; Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:19:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion &#8211; Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:19:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery &#8211; Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:19:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:19:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails &#8211; Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:19:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival &#8211; Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:19:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course &#8211; Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:19:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:19:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:19:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic &#8211; Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:19:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe &#8211; Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:19:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:19:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe &#8211; About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:19:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:19:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:19:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:19:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:19:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:19:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:19:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant &#8211; About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:19:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:19:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:19:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:19:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:19:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption &#8211; Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:19:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:19:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:19:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:19:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise &#038; Fitness Equipment &#8211; eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:19:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer &#8211; Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:19:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe &#8211; Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:19:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:19:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe &#8211; Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:19:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation &#8211; Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:19:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:19:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:19:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events &#8211; Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:19:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training &#8211; Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:19:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:19:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe &#8211; About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:19:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses &#8211; Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:19:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:19:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:19:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop &#8211; eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:19:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace &#8211; Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:19:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa &#038; Beauty &#8211; Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:19:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:19:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:19:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening &#8211; Health &#038; Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:19:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company &#8211; Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:19:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:19:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management &#8211; Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:19:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact &#8211; Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:19:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:19:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:19:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care &#8211; Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:19:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:19:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones &#8211; eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:19:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe &#8211; Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:19:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference &#8211; Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:19:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:19:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:19:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:19:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe &#8211; Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:19:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course &#8211; eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:19:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:19:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:19:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:19:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:19:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency &#8211; Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:19:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash &#8211; Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:19:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography &#8211; Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:19:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:19:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:19:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:19:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer &#8211; Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:19:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:19:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker &#8211; Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:19:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture &#8211; Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:19:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:19:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:19:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:19:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor &#8211; Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:19:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe &#8211; About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:19:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach &#8211; Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:19:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe &#8211; Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:19:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:19:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting &#8211; Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:19:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe &#8211; About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:19:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:19:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:19:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:19:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:19:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:19:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing &#038; Moving Company &#8211; Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:19:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer &#8211; Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:19:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:19:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design &#8211; Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:19:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management &#8211; Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:19:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:19:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:19:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center &#8211; Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:19:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:19:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:19:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe &#8211; Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:19:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:19:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course &#8211; Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:19:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:19:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:19:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:19:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:19:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef &#8211; Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:19:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe &#8211; Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:19:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:19:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course &#8211; Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:19:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe &#8211; Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:19:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant &#8211; Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:19:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:19:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant &#8211; Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:19:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project &#8211; Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:19:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer &#8211; Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:19:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog &amp; Cat Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:19:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:19:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:19:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming &#8211; Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:19:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition &#8211; Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:19:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:19:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course &#8211; Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:19:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger &#8211; Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:19:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor &#8211; Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:19:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:19:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:19:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:19:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery &#8211; Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:19:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar &#8211; Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:19:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:19:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:19:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer &#8211; Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:19:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:19:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:19:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:19:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:19:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:19:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:19:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:19:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare &#8211; Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:19:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:19:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:19:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:19:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare &#8211; Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:19:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:19:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:19:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog &#8211; Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:19:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service &#8211; Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:19:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine &#8211; Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:19:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:19:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:19:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company &#8211; About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:19:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:19:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction &#8211; Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:19:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:19:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:19:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency &#8211; About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:19:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic &#8211; Health &amp; Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:19:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:19:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:19:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:19:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:19:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School &#8211; Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:19:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:19:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:19:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:19:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist &#8211; Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:19:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:19:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference &#8211; Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:19:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:19:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children&#8217;s Optometrist &#8211; Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:19:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:19:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:19:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:19:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery &#8211; Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:19:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:19:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon &#8211; Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:19:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant &#8211; Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:19:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:19:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon &#8211; Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:19:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist &#8211; Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:19:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon &#8211; Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:19:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance &#8211; Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:19:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon &#8211; Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:19:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:19:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:19:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:19:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency &#8211; Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:19:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:19:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page &#8211; Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:19:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:19:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:19:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page &#8211; Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:19:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:19:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:19:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product &#8211; eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:19:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:19:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:19:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym &#8211; App Service &#8211; Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:19:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio &#8211; Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:19:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:19:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio &#8211; Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:19:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion &#8211; eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:19:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:19:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale &#8211; eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:19:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:19:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:19:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:19:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef &#8211; Thank You Page &#8211; Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:19:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:19:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course  &#8211; Thank You Page &#8211; Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:19:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:19:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:19:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:19:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist &#8211; Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:19:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:19:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:19:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:19:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:19:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:19:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:19:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:19:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform &#8211; Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:19:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:19:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:19:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:19:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store &#8211; Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:19:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:19:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:19:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:19:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:19:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:19:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:19:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate &#8211; News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:19:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store &#8211; Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:19:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:19:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:19:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency &#8211; Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:19:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:19:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant &#8211; Chef&#8217;s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:19:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant &#8211; Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:19:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:19:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop &#8211; 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:19:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:19:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:19:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop &#8211; Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:19:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant &#8211; Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:19:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop &#8211; Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:19:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:19:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop &#8211; About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:19:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop &#8211; Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:19:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop &#8211; Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:19:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop &#8211; Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:19:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop &#8211; Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:19:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course &#8211; Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:19:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop &#8211; Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:19:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:19:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:19:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course &#8211; Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:19:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:19:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:19:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:19:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home &#8211; Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:19:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:19:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:19:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design &#8211; Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:19:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:19:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:19:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:19:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography &#8211; About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:19:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:19:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography &#8211; Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:19:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography &#8211; Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:19:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:19:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography &#8211; Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:19:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography &#8211; Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:19:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography &#8211; Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:19:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:19:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography &#8211; Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:19:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:19:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography &#8211; Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:19:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography &#8211; Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:19:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography &#8211; B&amp;W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:19:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:19:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography &#8211; Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:19:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:19:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:19:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel &#8211; Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:19:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:19:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:19:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel &#8211; Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:19:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:19:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel &#8211; Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:19:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel &#8211; Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:19:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel &#8211; FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:19:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:19:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel &#8211; Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:19:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio &#8211; Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:19:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:19:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:19:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:19:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio &#8211; Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:19:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:19:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:19:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:19:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:19:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm &#8211; About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:19:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:19:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm &#8211; Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:19:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:19:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym &#8211; Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:19:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:19:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm &#8211; Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:19:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact  16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:19:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm &#8211; Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:19:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:19:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm &#8211; Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:19:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:19:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency &#8211; Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:19:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym &#8211; Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:19:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:19:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm &#8211; Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:19:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:19:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm &#8211; Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:19:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency &#8211; Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:19:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:19:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym &#8211; Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:19:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym &#8211; Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:19:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm &#8211; Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:19:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:19:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency &#8211; Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:19:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:19:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym &#8211; About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:19:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:19:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym &#8211; Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:19:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:19:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency &#8211; Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:19:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:19:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym &#8211; Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:19:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:19:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:19:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:19:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:19:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:19:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:19:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:19:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:19:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:19:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:19:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:19:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:19:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:19:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:19:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:19:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:19:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:19:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:19:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:19:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:19:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:19:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:19:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:19:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:19:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:19:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:19:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:19:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:19:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:19:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:19:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:19:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:19:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:19:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:19:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:19:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:19:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:19:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:19:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:19:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:19:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:19:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:19:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:19:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:19:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:19:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:19:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:19:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:19:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:19:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:19:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:19:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:19:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:19:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:19:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:19:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:19:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:19:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:19:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:19:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:19:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:19:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:19:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:19:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:19:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:19:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:19:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:19:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:19:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:19:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:19:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:19:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:19:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company &#8211; Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:19:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:19:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:19:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:19:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:19:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:19:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:19:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:19:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:19:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:19:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:19:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:19:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:19:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:19:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:19:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:19:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:19:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:19:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:19:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:19:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:19:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:19:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:19:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:19:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:19:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:19:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:19:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:19:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:19:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:19:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:19:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:19:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:19:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:19:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:19:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:19:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:19:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:19:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:19:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:19:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:19:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:19:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:19:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:19:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:19:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:19:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:19:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:19:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:19:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:19:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:19:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design &#8211; Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:19:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design &#8211; News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:19:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design &#8211; Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:19:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design &#8211; Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:19:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant &#8211; 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:19:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant &#8211; Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:19:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant &#8211; Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:19:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:19:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm &#8211; Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:19:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:19:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:19:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm &#8211; Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:19:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:19:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate &#8211; 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:19:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:19:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:19:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate &#8211; Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:19:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate &#8211; Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:19:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate &#8211; single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:19:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:19:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine &#8211; Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:19:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:19:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine &#8211; Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:19:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine &#8211; Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:19:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:19:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:19:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:19:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine &#8211; Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:19:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:19:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:19:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course &#8211; End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:19:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:19:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course &#8211; Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:19:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course &#8211; Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:19:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography &#8211; 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:19:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography &#8211; Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:19:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography &#8211; Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:19:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography &#8211; Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:19:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography &#8211; Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:19:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:19:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:19:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:19:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:19:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:19:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio &#8211; Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:19:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:19:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio &#8211; Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:19:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio &#8211; Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:19:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:19:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:19:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:19:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:19:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:19:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:19:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:19:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:19:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:19:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:19:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:19:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:19:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:19:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:19:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:19:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:19:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:19:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:19:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:19:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:19:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:19:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:19:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:19:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:19:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:19:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:19:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:19:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:19:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:19:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:19:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:19:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist &#8211; Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:19:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:19:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:19:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:19:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:19:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist &#8211; single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:19:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:19:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist &#8211; single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:19:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:19:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:19:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:19:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:19:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:19:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:19:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:19:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:19:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:19:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:19:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:19:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:19:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:19:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:19:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:19:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:19:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:19:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:19:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:19:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:19:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:19:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:19:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:19:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:19:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:19:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:19:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:19:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:19:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:19:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:19:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:19:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:19:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:19:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:19:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:19:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:19:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:19:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:19:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:19:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:19:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:19:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:19:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:19:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:19:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:19:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:19:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:19:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:19:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:19:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:19:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:19:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:19:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:19:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:19:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:19:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:19:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:19:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:19:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:19:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:19:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:19:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:19:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:19:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:19:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:19:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:19:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:19:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:19:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:19:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:19:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:19:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:19:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:19:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:19:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:19:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:19:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:19:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:19:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:19:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:19:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:19:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:19:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:19:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:19:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:19:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:19:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:19:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:19:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:19:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:19:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:19:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:19:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:19:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:19:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:19:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:19:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:19:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel &#8211; Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:19:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel &#8211; Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:19:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel &#8211; Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:19:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel &#8211; Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:19:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:19:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog &#8211; 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:19:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:19:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog &#8211; Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:19:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog &#8211; Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:19:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog &#8211; Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:19:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:19:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog &#8211; Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','no'),(3141,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:69:\"Elementor\'s 2023 Black Friday Sale: The Deals You\'ve Been Waiting For\";s:7:\"excerpt\";s:152:\"Why settle for less when you can unlock the full power of Elementor? This Black Friday, we\'re offering deals so good, they\'ll make you do a double-take.\";s:7:\"created\";i:1700561623;s:5:\"badge\";s:0:\"\";s:3:\"url\";s:130:\"https://elementor.com/blog/black-friday-cyber-monday-2023/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:86:\"New in Elementor 3.17 - Enhance Visitor Experience With AJAX, Faster Websites and More\";s:7:\"excerpt\";s:173:\"Elementor 3.17 introduces AJAX Loading for Loop Grids, improves image loading speed, adds the ability to access past prompts and content generated by Elementor AI, and more.\";s:7:\"created\";i:1698835967;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:150:\"https://elementor.com/blog/elementor-317-loop-grid-ajax-loading-rating-widget/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:73:\"Elementor 3.16 - Faster Performance, Flexible Design, and more Accessible\";s:7:\"excerpt\";s:210:\"Elementor 3.16 activates Flexbox Containers by default for new websites, improves site loading speed with performance enhancements, increases accessibility for visitors who use assistive technologies, and more.\";s:7:\"created\";i:1695134049;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:152:\"https://elementor.com/blog/316-faster-performance-flexible-design-accessibility/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','no'),(3295,'_transient_health-check-site-status-result','{\"good\":19,\"recommended\":4,\"critical\":0}','yes'),(3302,'jetpack_active_plan','a:10:{s:10:\"product_id\";i:2002;s:12:\"product_slug\";s:12:\"jetpack_free\";s:12:\"product_name\";s:12:\"Jetpack Free\";s:18:\"product_name_short\";s:4:\"Free\";s:7:\"expired\";b:0;s:14:\"billing_period\";s:0:\"\";s:13:\"user_is_owner\";b:0;s:7:\"is_free\";b:1;s:11:\"license_key\";s:30:\"free_FlebnRYKdpLybyqvRFLiQP1JS\";s:8:\"features\";a:2:{s:6:\"active\";a:17:{i:0;s:12:\"advanced-seo\";i:1;s:3:\"cdn\";i:2;s:9:\"donations\";i:3;s:17:\"jetpack-dashboard\";i:4;s:18:\"recurring-payments\";i:5;s:11:\"republicize\";i:6;s:17:\"security-settings\";i:7;s:17:\"seo-preview-tools\";i:8;s:14:\"send-a-message\";i:9;s:15:\"social-previews\";i:10;s:18:\"upload-audio-files\";i:11;s:18:\"upload-video-files\";i:12;s:15:\"whatsapp-button\";i:13;s:25:\"social-image-auto-convert\";i:14;s:26:\"social-mastodon-connection\";i:15;s:27:\"social-instagram-connection\";i:16;s:24:\"social-multi-connections\";}s:9:\"available\";a:43:{s:7:\"akismet\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"antispam\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:13:\"backups-daily\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:8:\"calendly\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:20:\"cloudflare-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:14:\"cloudflare-cdn\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/audio\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:10:\"core/cover\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:10:\"core/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:17:\"full-activity-log\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:16:\"google-analytics\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:9:\"opentable\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:16:\"priority_support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:4:\"scan\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"simple-payments\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:18:\"social-shares-1000\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:28:\"subscriber-unlimited-imports\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:7:\"support\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:29:\"vaultpress-automated-restores\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:25:\"vaultpress-backup-archive\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:18:\"vaultpress-backups\";a:17:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:22:\"jetpack_security_daily\";i:7;s:30:\"jetpack_security_daily_monthly\";i:8;s:25:\"jetpack_security_realtime\";i:9;s:33:\"jetpack_security_realtime_monthly\";i:10;s:16:\"jetpack_complete\";i:11;s:24:\"jetpack_complete_monthly\";i:12;s:29:\"jetpack_security_t1_bi_yearly\";i:13;s:26:\"jetpack_security_t1_yearly\";i:14;s:27:\"jetpack_security_t1_monthly\";i:15;s:26:\"jetpack_security_t2_yearly\";i:16;s:27:\"jetpack_security_t2_monthly\";}s:24:\"vaultpress-storage-space\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:13:\"video-hosting\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:10:\"videopress\";a:8:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:16:\"jetpack_personal\";i:3;s:23:\"jetpack_premium_monthly\";i:4;s:24:\"jetpack_business_monthly\";i:5;s:24:\"jetpack_personal_monthly\";i:6;s:16:\"jetpack_complete\";i:7;s:24:\"jetpack_complete_monthly\";}s:22:\"videopress-1tb-storage\";a:6:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";}s:16:\"videopress/video\";a:4:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";}s:7:\"wordads\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:15:\"wordads-jetpack\";a:15:{i:0;s:15:\"jetpack_premium\";i:1;s:16:\"jetpack_business\";i:2;s:23:\"jetpack_premium_monthly\";i:3;s:24:\"jetpack_business_monthly\";i:4;s:22:\"jetpack_security_daily\";i:5;s:30:\"jetpack_security_daily_monthly\";i:6;s:25:\"jetpack_security_realtime\";i:7;s:33:\"jetpack_security_realtime_monthly\";i:8;s:16:\"jetpack_complete\";i:9;s:24:\"jetpack_complete_monthly\";i:10;s:29:\"jetpack_security_t1_bi_yearly\";i:11;s:26:\"jetpack_security_t1_yearly\";i:12;s:27:\"jetpack_security_t1_monthly\";i:13;s:26:\"jetpack_security_t2_yearly\";i:14;s:27:\"jetpack_security_t2_monthly\";}s:6:\"search\";a:4:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:16:\"jetpack_complete\";i:3;s:24:\"jetpack_complete_monthly\";}s:18:\"google-my-business\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:9:\"polldaddy\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:15:\"personal-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:14:\"premium-themes\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:17:\"real-time-backups\";a:11:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";i:2;s:25:\"jetpack_security_realtime\";i:3;s:33:\"jetpack_security_realtime_monthly\";i:4;s:16:\"jetpack_complete\";i:5;s:24:\"jetpack_complete_monthly\";i:6;s:29:\"jetpack_security_t1_bi_yearly\";i:7;s:26:\"jetpack_security_t1_yearly\";i:8;s:27:\"jetpack_security_t1_monthly\";i:9;s:26:\"jetpack_security_t2_yearly\";i:10;s:27:\"jetpack_security_t2_monthly\";}s:28:\"vaultpress-security-scanning\";a:2:{i:0;s:16:\"jetpack_business\";i:1;s:24:\"jetpack_business_monthly\";}s:18:\"cloud-critical-css\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:17:\"image-cdn-quality\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"image-size-analysis\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:14:\"instant-search\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:19:\"performance-history\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:26:\"social-enhanced-publishing\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}s:10:\"stats-paid\";a:2:{i:0;s:16:\"jetpack_complete\";i:1;s:24:\"jetpack_complete_monthly\";}}}}','yes');
INSERT INTO `staging_ajj_options` VALUES (3407,'rishi__cb_customizer_google_fonts','a:2:{s:11:\"last_update\";i:1700968164;s:5:\"fonts\";s:1143290:\"{\r\n  \"kind\": \"webfonts#webfontList\",\r\n  \"items\": [\r\n    {\r\n      \"family\": \"ABeeZee\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN6tKukbcHCpE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/abeezee/v22/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE6VhLPJp6qGI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abhaya Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/abhayalibre/v13/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aboreto\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aboreto/v2/5DCXAKLhwDDQ4N8blKTeA2yuxSY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abril Fatface\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abrilfatface/v19/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Abyssinica SIL\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/abyssinicasil/v1/oY1H8ezOqK7iI3rK_45WKoc8J6UZBFOVAXuI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aclonica\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aclonica/v18/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Acme\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/acme/v18/RrQfboBx-C5_bx3Lb23lzLk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Actor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO3ekXygtUMIO.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Adamina\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Advent Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/adventpro/v18/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aguafina Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aguafinascript/v16/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akaya Kanadaka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akayakanadaka/v16/N0bM2S5CPO5oOQqvazoRRb-8-PfRS5VBBSSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akaya Telivigala\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akayatelivigala/v22/lJwc-oo_iG9wXqU3rCTD395tp0uifdLdsIH0YH8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akronim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Akshar\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSSgFy9CY94XsnPc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSXYFy9CY94XsnPc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSUQFy9CY94XsnPc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSagCy9CY94XsnPc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/akshar/v5/Yq6I-LyHWTfz9rGoqDaUbHvhkAUsSZECy9CY94XsnPc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aladin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aladin/v18/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alata/v9/PbytFmztEwbIofe6xKcRQEOX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alatsi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alatsi/v9/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Albert Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5L_rI32TxAj1g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5P_rI32TxAj1g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSH9ZP_rI32TxAj1g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHq5P_rI32TxAj1g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHmZP_rI32TxAj1g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHdZT_rI32TxAj1g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHTJT_rI32TxAj1g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHK5T_rI32TxAj1g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dZIFdwYjGaAMFtZd_QA3xXSKZqhr-TenSHApT_rI32TxAj1g.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX7ofybRUz1r5t.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX74fybRUz1r5t.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9BJ74fybRUz1r5t.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/albertsans/v1/i7dfIFdwYjGaAMFtZd_QA1Zeelmy79QJ1HOSY9C-6IfybRUz1r5t.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aldrich\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aldrich/v17/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alef\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alef/v21/FeVfS0NQpLYgrjJbC5FxxbU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alef/v21/FeVQS0NQpLYglo50L5la2bxii28.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hUI_KCisSGVrw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGxBUI_KCisSGVrw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGKBII_KCisSGVrw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGERII_KCisSGVrw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGdhII_KCisSGVrw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreya/v29/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNGXxII_KCisSGVrw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbgv6qmkySFr9V9.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlbSv6qmkySFr9V9.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlY-uKqmkySFr9V9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlYHuKqmkySFr9V9.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZguKqmkySFr9V9.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreya/v29/4UaSrEBBsBhlBjvfkSLk3abBFkvpkARTPlZJuKqmkySFr9V9.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasc/v22/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasans/v21/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alegreya Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alegreyasanssc/v20/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aleo\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syKbr9DVDno985KM.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/aleo/v11/c4mv1nF8G8_s8ArD0D1ogoY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/aleo/v11/c4mg1nF8G8_syLbs9DVDno985KM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/aleo/v11/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alex Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alexbrush/v20/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alfa Slab One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alfaslabone/v17/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6FcJpA_chzJ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alike\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alike/v20/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alike Angular\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alikeangular/v20/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alkalami\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alkalami/v1/zOL_4pfDmqRL95WXi5eLw8BMuvhH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allan/v20/ea8XadU7WuTxEtb2P9SF8nZE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/allan/v20/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allerta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allerta Stencil\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allertastencil/v18/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allison\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allison/v9/X7nl4b88AP2nkbvZOCaQ4MTgAgk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Allura\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/allura/v18/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almarai\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/almarai/v12/tsstApxBaigK_hnnc1qPonC3vqc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/almarai/v12/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendra/v22/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/almendra/v22/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/almendra/v22/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendradisplay/v25/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Almendra SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/almendrasc/v25/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO5QqFsJ3C8qng.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uO9QqFsJ3C8qng.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Zu9QqFsJ3C8qng.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9OO9QqFsJ3C8qng.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9Cu9QqFsJ3C8qng.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd95uhQqFsJ3C8qng.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd93-hQqFsJ3C8qng.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9uOhQqFsJ3C8qng.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpHtKqkOwdO2aOIwhWudEWpx_zq_Xna-Xd9kehQqFsJ3C8qng.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky46lEN_io6npfB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/alumnisans/v12/nwpBtKqkOwdO2aOIwhWudG-g9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Collegiate One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpB-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhjdayDiPw2ta.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanscollegiateone/v2/MQpD-XChK8G5CtmK_AuGxQrdNvPSXkn0RM-XqjWWhgdYwjytxntaDFU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Inline One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQBbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpD3AZcr7xbYw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisansinlineone/v2/RrQDbpJx9zZ3IXTBOASKp5gJAetBdaihcjbpP3ITdpz0fYxcrQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Alumni Sans Pinstripe\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNNjOFFPq_AUJD1umyS30W-Xub8zD1ObhezYrVIpcDA5w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/alumnisanspinstripe/v1/ZgNDjOFFPq_AUJD1umyS30W-Xub8zD1ObheDYL9Mh8XQ5_cY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amarante\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amarante/v22/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amaranth\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zPnCF9GqwnzW.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/amaranth/v18/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amatic SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amaticsc/v24/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amethysta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiko\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiko/v12/WwkQxPq1DFK04tqlc17MMZgJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amiko/v12/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiri\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiri/v24/J7aRnpd8CGxBHqUpvrIw74NL.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/amiri/v24/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amiri/v24/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/amiri/v24/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amiri Quran\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amiriquran/v7/_Xmo-Hk0rD6DbUL4_vH8Zq5t7Cycsu-2.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Amita\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/amita/v16/HhyaU5si9Om7PQlvAfSKEZZL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/amita/v16/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anaheim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anaheim/v14/8vII7w042Wp87g4G0UTUEE5eK_w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Andada Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DPJBY8cFLzvIt2S.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DP7BY8cFLzvIt2S.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMXAo8cFLzvIt2S.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DMuAo8cFLzvIt2S.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyEU5Qi9-SuOEhPe4LtKoVCuWGURPcg3DNJAo8cFLzvIt2S.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRmdfHrjNJ82Stjw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRlVfHrjNJ82Stjw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRrlYHrjNJ82Stjw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRoBYHrjNJ82Stjw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/andadapro/v12/HhyGU5Qi9-SuOEhPe4LtAIxwRrn9L22O2yYBRudYHrjNJ82Stjw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Andika\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/andika/v22/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/andika/v22/mem9Ya6iyW-Lwqgwb7YVeLkWVNBt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/andika/v22/mem8Ya6iyW-Lwqg40ZM1UpcaXcl0Aw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/andika/v22/mem6Ya6iyW-Lwqgwb46pV50ef8xkA76a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Bangla\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9YIocg56yyvt0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9ZIocg56yyvt0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfjFZIocg56yyvt0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofm9ZIocg56yyvt0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofl1ZIocg56yyvt0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfrFeIocg56yyvt0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3OfoheIocg56yyvt0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekbangla/v4/_gPW1R38qTExHg-17BhM6n66QhabMYB0fBKONtHhRSIUIre5mq3Ofu9eIocg56yyvt0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtk-9nFk0LjZ7E.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtku9nFk0LjZ7E.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLCzku9nFk0LjZ7E.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDtku9nFk0LjZ7E.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLDfku9nFk0LjZ7E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAzle9nFk0LjZ7E.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLAKle9nFk0LjZ7E.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekdevanagari/v4/jVyo7nP0CGrUsxB-QiRgw0NlLaVt_QUAkYxLRoCL23mlh20ZVHOMAWbgHLBtle9nFk0LjZ7E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5G7w0KgB7Lm7g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5C7w0KgB7Lm7g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0SZC7w0KgB7Lm7g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0F5C7w0KgB7Lm7g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0JZC7w0KgB7Lm7g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0yZe7w0KgB7Lm7g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-08Je7w0KgB7Lm7g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekgujarati/v4/l7g_bj5oysqknvkCo2T_8FuiIRBA7lncQUmbIBEtPKiYYQhRwyBxCD-0l5e7w0KgB7Lm7g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5ppXK41H6DjbA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95tpXK41H6DjbA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbKZtpXK41H6DjbA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbd5tpXK41H6DjbA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbRZtpXK41H6DjbA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbqZxpXK41H6DjbA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkbkJxpXK41H6DjbA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekgurmukhi/v4/0QIAMXRO_YSkA0quVLY79JnHybfeEOrXCa9Dmd9Ql6a6R_vEMc5TaLkb95xpXK41H6DjbA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEAukVReA1oef.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDEQukVReA1oef.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dEdEQukVReA1oef.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFDEQukVReA1oef.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dFxEQukVReA1oef.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGdFgukVReA1oef.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dGkFgukVReA1oef.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekkannada/v4/raxcHiCNvNMKe1CKFsINYFlgkEIwGa8nL6ruWJg1j--h8pvBKSiw4dHDFgukVReA1oef.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Latin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7EZKdClWL3kgw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7AZKdClWL3kgw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuGbAZKdClWL3kgw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuR7AZKdClWL3kgw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PudbAZKdClWL3kgw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PumbcZKdClWL3kgw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3PuoLcZKdClWL3kgw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/aneklatin/v4/co3pmWZulTRoU4a8dqrWiajBS5ByUkvdrluH-xWG5uJTY4x-L3Pux7cZKdClWL3kgw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu_HMr5PDO71Qs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu-HMr5PDO71Qs.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUcW-HMr5PDO71Qs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUZu-HMr5PDO71Qs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUam-HMr5PDO71Qs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUUW5HMr5PDO71Qs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTUXy5HMr5PDO71Qs.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekmalayalam/v4/6qLjKZActRTs_mZAJUZWWkhke0nYa_vC8_Azq3-gP1SReZeOtqQuDVUTURu5HMr5PDO71Qs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Odia\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZf63mXZAtm_es.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZfq3mXZAtm_es.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnnHfq3mXZAtm_es.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmZfq3mXZAtm_es.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnmrfq3mXZAtm_es.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnlHea3mXZAtm_es.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnl-ea3mXZAtm_es.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anekodia/v4/TK3PWkoJARApz5UCd345tuevwwQX0CwsoYkAWgWYevAauivBUnkZea3mXZAtm_es.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQiZ6q4v4oegjOQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwid6q4v4oegjOQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNHCd6q4v4oegjOQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNQid6q4v4oegjOQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNcCd6q4v4oegjOQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNnCB6q4v4oegjOQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNpSB6q4v4oegjOQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anektamil/v4/XLYJIZH2bYJHGYtPGSbUB8JKTp-_9n55SsLHW0WZez6TjtkDu3uNwiB6q4v4oegjOQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anek Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y-_oE2G2ep10_8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136--oE2G2ep10_8.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i133G-oE2G2ep10_8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13y--oE2G2ep10_8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13x2-oE2G2ep10_8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i13_G5oE2G2ep10_8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i138i5oE2G2ep10_8.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anektelugu/v4/LhWLMVrUNvsddMtYGCx4FcVWOjlwE1WgXdoJ-5XHMl2DkooGK7i136-5oE2G2ep10_8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Angkor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/angkor/v28/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Annie Use Your Telescope\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/annieuseyourtelescope/v18/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anonymous Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/anonymouspro/v21/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRaZLodgzydtk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic Didone\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antic Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anton\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/anton/v23/1Ptgg87LROyAm0K08i4gS7lu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Antonio\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8BtIY2DwSXlM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVzx8RtIY2DwSXlM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVwv8RtIY2DwSXlM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxx8RtIY2DwSXlM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVxD8RtIY2DwSXlM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyv9htIY2DwSXlM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/antonio/v11/gNMbW3NwSYq_9WD34ngK5F8vR8T0PVyW9htIY2DwSXlM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Anybody\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12HPrsXD_nBPpQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2DPrsXD_nBPpQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JiWDPrsXD_nBPpQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J12DPrsXD_nBPpQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4J5WDPrsXD_nBPpQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JCWfPrsXD_nBPpQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JMGfPrsXD_nBPpQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JV2fPrsXD_nBPpQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/anybody/v4/VuJbdNvK2Ib2ppdWYq311GH32hxIv0sd5grncSUi2F_Wim4JfmfPrsXD_nBPpQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7M_H3HVfpcHY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn7c_H3HVfpcHY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyN57c_H3HVfpcHY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMn7c_H3HVfpcHY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyMV7c_H3HVfpcHY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyP56s_H3HVfpcHY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyPA6s_H3HVfpcHY.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOn6s_H3HVfpcHY.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/anybody/v4/VuJddNvK2Ib2ppdWSKTHN4GOiYrmuF7VpPiuQ9r6sTRMJGkcHyOO6s_H3HVfpcHY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arapey\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arapey/v16/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arbutus\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arbutus/v24/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arbutus Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Architects Daughter\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/architectsdaughter/v18/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDJp8B1oJ0vyVQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDNp8B1oJ0vyVQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTajNp8B1oJ0vyVQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTNDNp8B1oJ0vyVQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTBjNp8B1oJ0vyVQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT6jRp8B1oJ0vyVQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTT0zRp8B1oJ0vyVQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTtDRp8B1oJ0vyVQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/archivo/v18/k3k6o8UDI-1M0wlSV9XAw6lQkqWY8Q82sJaRE-NWIDdgffTTnTRp8B1oJ0vyVQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBshdsBU7iVdxQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABsxdsBU7iVdxQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HDfsxdsBU7iVdxQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCBsxdsBU7iVdxQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HCzsxdsBU7iVdxQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBftBdsBU7iVdxQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HBmtBdsBU7iVdxQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HABtBdsBU7iVdxQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/archivo/v18/k3k8o8UDI-1M0wlSfdzyIEkpwTM29hr-8mTYIRyOSVz60_PG_HAotBdsBU7iVdxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo Black\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivoblack/v17/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Archivo Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFGKpHOtFCQ76Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvHlGKpHOtFCQ76Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhv8laKpHOtFCQ76Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvy1aKpHOtFCQ76Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJi53mpNiEr6T6Y.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BJQ53mpNiEr6T6Y.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BK84HmpNiEr6T6Y.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/archivonarrow/v24/tss7ApVBdCYD5Q7hcxTE1ArZ0bb1k3JSLwe1hB965BKF4HmpNiEr6T6Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Are You Serious\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/areyouserious/v10/ll8kK2GVSSr-PtjQ5nONVcNn4306hT9nCGRayg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aref Ruqaa\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaa/v23/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaa/v23/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aref Ruqaa Ink\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2fY5WOGUFlt84GTOkP6Kdx72ThVIGpgnxL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arefruqaaink/v5/1q2cY5WOGUFlt84GTOkP6Kdx71xde6WhqWBCyxWn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arima\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTE-pQGOyYw2fw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX14TA-pQGOyYw2fw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1PzA-pQGOyYw2fw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1YTA-pQGOyYw2fw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1UzA-pQGOyYw2fw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1vzc-pQGOyYw2fw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arima/v1/neIWzCqmt4Aup_qE1nFWqxI1RZX1hjc-pQGOyYw2fw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arima Madurai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/arimamadurai/v14/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arimo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxsBxDAVQI4aA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk338xsBxDAVQI4aA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3M8tsBxDAVQI4aA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arimo/v27/P5sfzZCDf9_T_3cV7NCUECyoxNk3CstsBxDAVQI4aA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-ERBrEdwcoaKww.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY-2RBrEdwcoaKww.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9aQxrEdwcoaKww.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arimo/v27/P5sdzZCDf9_T_10c3i9MeUcyat4iJY9jQxrEdwcoaKww.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arizonia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arizonia/v19/neIIzCemt4A5qa7mv6WGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Armata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/armata/v19/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arsenal\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arsenal/v12/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Artifika\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/artifika/v20/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arvo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arvo/v20/tDbD2oWUg0MKmSAa7Lzr7vs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arvo/v20/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/arvo/v20/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Arya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/arya/v19/ga6CawNG-HJd9Ub1-beqdFE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/arya/v19/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asap\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsE61qhOUX-8AEEe.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsEI1qhOUX-8AEEe.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsHk0ahOUX-8AEEe.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asap/v24/KFO9CniXp96a4Tc2EZzSuDAoKsHd0ahOUX-8AEEe.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylUANW3ueBVEeezU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylXINW3ueBVEeezU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylZ4KW3ueBVEeezU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/asap/v24/KFO7CniXp96ayz4E7kS706qGLdTylacKW3ueBVEeezU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asap Condensed\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/asapcondensed/v15/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asar/v22/sZlLdRyI6TBIXkYQDLlTW6E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asset\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asset/v24/SLXGc1na-mM4cWImRJqExst1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Assistant\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZnEGGf3qGuvM4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtrhnEGGf3qGuvM4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/assistant/v18/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtmZgEGGf3qGuvM4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Astloch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/astloch/v26/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Asul\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/asul/v19/VuJ-dNjKxYr46fMFXK78JIg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/asul/v19/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Athiti\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/athiti/v12/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/athiti/v12/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atkinson Hyperlegible\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt23C1KxNDXMspQ1lPyU89-1h6ONRlW45GE5ZgpewSSbQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt43C1KxNDXMspQ1lPyU89-1h6ONRlW45G055ItWQGCbUWn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt73C1KxNDXMspQ1lPyU89-1h6ONRlW45G8WbcNcy-OZFy-FA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/atkinsonhyperlegible/v10/9Bt93C1KxNDXMspQ1lPyU89-1h6ONRlW45G056qRdiWKRlmuFH24.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atma\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/atma/v15/uK_84rqWc-Eom25bDj8WIv4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/atma/v15/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Atomic Age\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/atomicage/v27/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Aubrey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7vugNsCxVEgA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Audiowide\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Autour One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/autourone/v24/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Average\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/average/v16/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Average Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Gruesa Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averialibre/v16/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Sans Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averiasanslibre/v17/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Averia Serif Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/averiaseriflibre/v16/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Azeret Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPRh0raa-5s3AA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPVh0raa-5s3AA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfwvVh0raa-5s3AA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfnPVh0raa-5s3AA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfrvVh0raa-5s3AA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfQvJh0raa-5s3AA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfe_Jh0raa-5s3AA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfHPJh0raa-5s3AA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF5ErsiyJsY9O_Gepph-FvtTQgMQUdNekSfNfJh0raa-5s3AA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkLye2Z4nAN7J.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJkbye2Z4nAN7J.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLbXkbye2Z4nAN7J.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLaJkbye2Z4nAN7J.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLa7kbye2Z4nAN7J.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZXlrye2Z4nAN7J.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLZulrye2Z4nAN7J.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYJlrye2Z4nAN7J.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/azeretmono/v11/3XF_ErsiyJsY9O_Gepph-HHkf_fUKCzX1EOKVLYglrye2Z4nAN7J.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"B612\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/b612/v12/3JnySDDxiSz32jm4GDigUXw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/b612/v12/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/b612/v12/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"B612 Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/b612mono/v12/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/b612mono/v12/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDGothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudgothic/v6/daafSTouBF7RUjnbt8p3LuKttQN98z_MbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bizudgothic/v6/daaASTouBF7RUjnbt8p3LuKVCSxZ-xTQZMhbaA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDMincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudmincho/v6/EJRRQgI6eOxFjBdKs38yhtW1dwT7rcpY8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDPGothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpgothic/v6/hES36X5pHAIBjmS84VL0Bue83nUMQWkMUAk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bizudpgothic/v6/hESq6X5pHAIBjmS84VL0Bue85skjZWEnTABCSQo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BIZ UDPMincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bizudpmincho/v6/ypvfbXOBrmYppy7oWWTg1_58nhhYtUb0gZk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Babylonica\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/babylonica/v2/5aUw9_i2qxWVCAE2aHjTqDJ0-VVMoEw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bad Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/badscript/v16/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bahiana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bahiana/v19/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bahianita\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bahianita/v17/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bai Jamjuree\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/baijamjuree/v11/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bakbak One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bakbakone/v6/zOL54pXAl6RI-p_ardnuycRuv-hHkOs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ballet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ballet/v21/QGYyz_MYZA-HM4NjuGOVnUEXme1I4Xi3C4G-EiAou6Y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdgazapv9Fat7WcN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdgozapv9Fat7WcN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdjEyqpv9Fat7WcN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdj9yqpv9Fat7WcN.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloo2/v14/wXK0E3kTposypRydzVT08TS3JnAmtdiayqpv9Fat7WcN.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhai 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNighMXeCo-jsZzo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNhohMXeCo-jsZzo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNvYmMXeCo-jsZzo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNs8mMXeCo-jsZzo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhai2/v19/sZlWdRSL-z1VEWZ4YNA7Y5ItevYWUOHDE8FvNqgmMXeCo-jsZzo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhaijaan 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyRSqP4L4ppfcyC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TyjSqP4L4ppfcyC.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TxPTaP4L4ppfcyC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8Tx2TaP4L4ppfcyC.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaijaan2/v12/zYXwKUwuEqdVGqM8tPDdAA_Y-_bMKo1EhQd2tWxo8TwRTaP4L4ppfcyC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Bhaina 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEssPvRfRLYWmZSA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEgMPvRfRLYWmZSA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEbMTvRfRLYWmZSA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEVcTvRfRLYWmZSA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloobhaina2/v20/qWc-B6yyq4P9Adr3RtoX1q6ySgbwusXwJjkOS-XEMsTvRfRLYWmZSA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Chettan 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CeKTO1oeH9xI2gc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CdCTO1oeH9xI2gc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CTyUO1oeH9xI2gc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CQWUO1oeH9xI2gc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloochettan2/v14/vm8hdRbmXEva26PK-NtuX4ynWEzF69-L4gqgkIL5CWKUO1oeH9xI2gc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Da 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjALsTNe55aRa7UE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjA5sTNe55aRa7UE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDVtjNe55aRa7UE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjDstjNe55aRa7UE.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balooda2/v14/2-c39J9j0IaUMQZwAJyJaOX1UUnf3GLnYjCLtjNe55aRa7UE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Paaji 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9AX74fybRUz1r5t.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Al74fybRUz1r5t.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9DJ6IfybRUz1r5t.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9Dw6IfybRUz1r5t.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloopaaji2/v20/i7dfIFFzbz-QHZUdV9_UGWZuelmy79QJ1HOSY9CX6IfybRUz1r5t.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Tamma 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMscPp-0IF71SGC5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMsuPp-0IF71SGC5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMvCOZ-0IF71SGC5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMv7OZ-0IF71SGC5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balootamma2/v13/vEFE2_hCAgcR46PaajtrYlBbVUMUJgIC5LHTrMucOZ-0IF71SGC5.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Tammudu 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jf8e4c6PZSlGmAA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_Jc0e4c6PZSlGmAA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JSEZ4c6PZSlGmAA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JRgZ4c6PZSlGmAA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/balootammudu2/v20/1Pt5g8TIS_SAmkLguUdFP8UaJcKkzlPmMT00GaE_JX8Z4c6PZSlGmAA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baloo Thambi 2\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKzcIzaQRG_n4osQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbK_8IzaQRG_n4osQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKE8UzaQRG_n4osQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKKsUzaQRG_n4osQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/baloothambi2/v14/cY9RfjeOW0NHpmOQXranrbDyu5JMJmNp-aDvUBbKTcUzaQRG_n4osQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Balsamiq Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/balsamiqsans/v10/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Balthazar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bangers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bangers/v20/FeVQS0BTqb0h60ACL5la2bxii28.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlow/v12/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlow/v12/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlow/v12/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowcondensed/v12/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barlow Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/barlowsemicondensed/v14/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barriecito\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/barriecito/v17/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Barrio\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/barrio/v19/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Basic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKQN34lDVyR7D.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baskervville\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baskervville/v13/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/baskervville/v13/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Battambang\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/battambang/v24/uk-kEGe7raEw-HjkzZabNhGp5w50_o9T7Q.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNtmLxyRa8oZK9I0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/battambang/v24/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/battambang/v24/uk-lEGe7raEw-HjkzZabNvGOxyRa8oZK9I0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Baumans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bayon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bayon/v29/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Be Vietnam Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HRUBX8YYbAiah8.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVLSTAyLFyeg_IDWvOJmVES_HwyPRsSZZIneh-waA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HT4JF8yT7wrcwap.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPbczRbgJdhapcUU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HScJ18yT7wrcwap.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPdMwRbgJdhapcUU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVPSTAyLFyeg_IDWvOJmVES_EwwD3s6ZKAi.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVNSTAyLFyeg_IDWvOJmVES_HwyBX8YYbAiah8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HTEJl8yT7wrcwap.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPYsxRbgJdhapcUU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HToIV8yT7wrcwap.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPac2RbgJdhapcUU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSMIF8yT7wrcwap.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPcM3RbgJdhapcUU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HSQI18yT7wrcwap.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPd80RbgJdhapcUU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVMSTAyLFyeg_IDWvOJmVES_HS0Il8yT7wrcwap.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bevietnampro/v10/QdVKSTAyLFyeg_IDWvOJmVES_HwyPfs1RbgJdhapcUU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Beau Rivage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/beaurivage/v2/UcCi3FIgIG2bH4mMNWJUlmg3NZp8K2sL.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bebas Neue\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bebasneue/v9/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Belgrano\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellefair\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellefair/v14/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Belleza\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellota\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bellota/v16/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bellota/v16/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bellota Text\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bellotatext/v16/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BenchNine\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/benchnine/v16/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Benne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/benne/v22/L0xzDFAhn18E6Vjxlt6qTDBN.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bentham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bentham/v18/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Berkshire Swash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/berkshireswash/v16/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Besley\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fbbBSdRoFPOl8-E.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fYTBSdRoFPOl8-E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fWjGSdRoFPOl8-E.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fVHGSdRoFPOl8-E.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fTbGSdRoFPOl8-E.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/besley/v12/PlIhFlO1MaNwaNGWUC92IOH_mtG4fR_GSdRoFPOl8-E.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CoZdiENGg4-E04A.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Ck5diENGg4-E04A.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6Cf5BiENGg4-E04A.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CRpBiENGg4-E04A.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CIZBiENGg4-E04A.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/besley/v12/PlIjFlO1MaNwaNG8WR2J-IiUAH-_aH6CCJBiENGg4-E04A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Beth Ellen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-20\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bethellen/v17/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bevan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bevan/v20/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bevan/v20/4iCt6KZ0a9NXjG8YWC7Zs0SJD4U.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BhuTuka Expanded One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bhutukaexpandedone/v2/SLXXc0jZ4WUJcClHTtv0t7IaDRsBsWRiJCyX8pg_RVH1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY86JF46SRP4yZQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ87JF46SRP4yZQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YddE7JF46SRP4yZQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdY87JF46SRP4yZQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0Ydb07JF46SRP4yZQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdVE8JF46SRP4yZQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdWg8JF46SRP4yZQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdQ88JF46SRP4yZQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersdisplay/v15/fC1MPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx12wPgf9g-_3F0YdSY8JF46SRP4yZQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Inline Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBEnR5yPc2Huux.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBE3R5yPc2Huux.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0mfE3R5yPc2Huux.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nBE3R5yPc2Huux.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0nzE3R5yPc2Huux.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kfFHR5yPc2Huux.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0kmFHR5yPc2Huux.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0lBFHR5yPc2Huux.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinedisplay/v21/_LOumyfF4eSU_SCrJc9OI24U7siGvBGcZqmqV9-ZZ85CGNOFeNLxoYMPJ0loFHR5yPc2Huux.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Inline Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0yqGN7Y6Jsc8c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0y6GN7Y6Jsc8c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgbqy6GN7Y6Jsc8c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwga0y6GN7Y6Jsc8c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgaGy6GN7Y6Jsc8c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZqzKGN7Y6Jsc8c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgZTzKGN7Y6Jsc8c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgY0zKGN7Y6Jsc8c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersinlinetext/v21/vm8XdQDmVECV5-vm5dJ-Tp-6WDeRjL4RV7dP8u-NMyHY74qpoNNcwgYdzKGN7Y6Jsc8c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Stencil Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0nPKHznJucP9w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0jPKHznJucP9w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_ZUjPKHznJucP9w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_O0jPKHznJucP9w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_CUjPKHznJucP9w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_5U_PKHznJucP9w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_3E_PKHznJucP9w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_u0_PKHznJucP9w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstencildisplay/v21/6aeZ4LS6U6pR_bp5b_t2ugOhHWFcxSGP9ttD96KCb8xPytKb-oPRU-vkuLm_kk_PKHznJucP9w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Stencil Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04XIGS_Py_AWbQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4TIGS_Py_AWbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRjYTIGS_Py_AWbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR04TIGS_Py_AWbQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGR4YTIGS_Py_AWbQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRDYPIGS_Py_AWbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRNIPIGS_Py_AWbQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGRU4PIGS_Py_AWbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshouldersstenciltext/v21/5aUV9-i2oxDMNwY3dHfW7UAt3Q453SM15wNj53bCcab2SJYLLUtk1OGReoPIGS_Py_AWbQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Big Shoulders Text\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-r3TIPNl6P2pc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-q3TIPNl6P2pc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3dGq3TIPNl6P2pc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Y-q3TIPNl6P2pc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3b2q3TIPNl6P2pc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3VGt3TIPNl6P2pc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Wit3TIPNl6P2pc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Q-t3TIPNl6P2pc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bigshoulderstext/v17/55xEezRtP9G3CGPIf49hxc8P0eytUxB2l66LmF6xc3kA3Sat3TIPNl6P2pc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bigelow Rules\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigelowrules/v23/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bigshot One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bigshotone/v25/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bilbo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ210hpIRz4wxE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bilbo Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BioRhyme\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biorhyme/v12/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"BioRhyme Expanded\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biorhymeexpanded/v19/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Birthstone\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/birthstone/v10/8AtsGs2xO4yLRhy87sv_HLn5jRfZHzM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Birthstone Bounce\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6XaxZF43lIvTWrktHOTBJZGH7dEeVJGIMYDo_8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/birthstonebounce/v9/ga6SaxZF43lIvTWrktHOTBJZGH7dEd29MacQJZP1LmD9.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Biryani\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/biryani/v13/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/biryani/v13/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bitter\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbeCL_EXFh2reU.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbfCL_EXFh2reU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8ajfCL_EXFh2reU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfCL_EXFh2reU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8cTfCL_EXFh2reU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8SjYCL_EXFh2reU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8RHYCL_EXFh2reU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8XbYCL_EXFh2reU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bitter/v28/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8V_YCL_EXFh2reU.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4P3OWHpzveWxBw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPzOWHpzveWxBw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cvvzOWHpzveWxBw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c4PzOWHpzveWxBw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6c0vzOWHpzveWxBw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cPvvOWHpzveWxBw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cB_vOWHpzveWxBw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cYPvOWHpzveWxBw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bitter/v28/raxjHiqOu8IVPmn7epZnDMyKBvHf5D6cSfvOWHpzveWxBw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black And White Picture\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackandwhitepicture/v22/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black Han Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackhansans/v15/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Black Ops One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blaka/v3/8vIG7w8722p_6kdr20D2FV5e.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka Hollow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blakahollow/v3/MCoUzAL91sjRE2FsKsxUtezYB9oFyW_-oA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blaka Ink\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/blakaink/v5/AlZy_zVVtpj22Znag2chdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Blinker\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/blinker/v12/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/blinker/v12/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/blinker/v12/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bodoni Moda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oU7awIBytVjMYwE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oXzawIBytVjMYwE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oZDdwIBytVjMYwE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oandwIBytVjMYwE.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oc7dwIBytVjMYwE.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT67PxzY382XsXX63LUYL6GYFcan6NJrKp-VPjfJMShrpsGFUt8oefdwIBytVjMYwE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZKMN4sXrJcwHqoQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZGsN4sXrJcwHqoQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZ9sR4sXrJcwHqoQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZz8R4sXrJcwHqoQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZqMR4sXrJcwHqoQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/bodonimoda/v19/aFT07PxzY382XsXX63LUYJSPUqb0pL6OQqxrZLnVbvZedvJtj-V7tIaZgcR4sXrJcwHqoQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bokor\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bokor/v30/m8JcjfpeeaqTiR2WdInbcaxE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bona Nova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonanova/v10/B50NF7ZCpX7fcHfvIUBJi6hqHK-CLA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/bonanova/v10/B50LF7ZCpX7fcHfvIUB5iaJuPqqSLJYf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/bonanova/v10/B50IF7ZCpX7fcHfvIUBxN4dOFISeJY8GgQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bonbon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonbon/v26/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bonheur Royale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bonheurroyale/v9/c4m51nt_GMTrtX-b9GcG4-YRmYK_c0f1N5Ij.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Boogaloo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/boogaloo/v19/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bowlby One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyone/v19/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bowlby One SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bowlbyonesc/v19/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Brawler\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/brawler/v19/xn7lYHE3xXewAscGiryUb932eNaPfk8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bree Serif\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Brygada 1918\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y2-f-V8Wu5O3gbo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y12f-V8Wu5O3gbo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y7GY-V8Wu5O3gbo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe08MI6eKpdGqlF5LANrM--ACNaeo8mTUIR_y4iY-V8Wu5O3gbo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfczxscv7GykboaLg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/brygada1918/v21/pe06MI6eKpdGqlF5LANrM--qAeRhe6D4yip43qfc9hscv7GykboaLg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bubblegum Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bubblegumsans/v16/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bubbler One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bubblerone/v20/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Buda\",\r\n      \"variants\": [\r\n        \"300\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/buda/v25/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Buenard\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/buenard/v17/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/buenard/v17/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungee/v11/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Hairline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeehairline/v18/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Inline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeinline/v11/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeoutline/v18/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Shade\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeeshade/v11/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Bungee Spice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/bungeespice/v8/nwpTtK2nIhxE0q-IwgSpZBqCzyI-aMPF7Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Butcherman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Butterfly Kids\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/butterflykids/v21/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkV2EL7Gvxm7rE_s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkW-EL7Gvxm7rE_s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkYODL7Gvxm7rE_s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabin/v26/u-4X0qWljRw-PfU81xCKCpdpbgZJl6XFpfEd7eA9BIxxkbqDL7Gvxm7rE_s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHx_KlwkzuA_u1Bg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXH9fKlwkzuA_u1Bg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHGfWlwkzuA_u1Bg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cabin/v26/u-4V0qWljRw-Pd815fNqc8T_wAFcX-c37MPiNYlWniJ2hJXHIPWlwkzuA_u1Bg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin Condensed\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabincondensed/v19/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cabin Sketch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cabinsketch/v19/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caesar Dressing\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cagliostro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cairo\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l2WgsQSaT0J0vRQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lB2gsQSaT0J0vRQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lWWgsQSaT0J0vRQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5la2gsQSaT0J0vRQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lh28sQSaT0J0vRQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5lvm8sQSaT0J0vRQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l2W8sQSaT0J0vRQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cairo/v20/SLXVc1nY6HkvangtZmpcWmhzfH5l8G8sQSaT0J0vRQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cairo Play\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnYq9yXa8GvzaA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1zHYq9yXa8GvzaA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1knYq9yXa8GvzaA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1oHYq9yXa8GvzaA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1THEq9yXa8GvzaA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1dXEq9yXa8GvzaA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1EnEq9yXa8GvzaA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cairoplay/v5/wXKEE3QSpo4vpRz_mz6FP-8iaauCLt_Hjopv3miu5IvcJo49mOo1O3Eq9yXa8GvzaA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caladea\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caladea/v7/kJEzBugZ7AAjhybUjR93-9IztOc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caladea/v7/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/caladea/v7/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Calistoga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/calistoga/v10/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Calligraffitti\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cambay\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cambay/v12/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cambay/v12/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cambay/v12/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cambo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cambo/v14/IFSqHeNEk8FJk416ok7xkPm8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Candal\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantarell\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantarell/v15/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cantarell/v15/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cantarell/v15/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cantarell/v15/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantata One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cantora One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cantoraone/v17/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Capriola\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/capriola/v13/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caramel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caramel/v7/P5sCzZKBbMTf_ShyxCRuiZ-uydg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carattere\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carattere/v7/4iCv6Kp1b9dXlgt_CkvTt2aMH4V_gg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cardo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cardo/v19/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cardo/v19/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cardo/v19/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carme\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carrois Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carrois Gothic SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Carter One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Castoro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/castoro/v18/1q2GY5yMCld3-O4cHYhEzOYenEU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/castoro/v18/1q2EY5yMCld3-O4cLYpOyMQbjEX5fw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Catamaran\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjc1anXuluiLyw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPjd1anXuluiLyw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPCbd1anXuluiLyw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd1anXuluiLyw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPErd1anXuluiLyw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPKba1anXuluiLyw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPJ_a1anXuluiLyw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPPja1anXuluiLyw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/catamaran/v17/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPNHa1anXuluiLyw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caudex\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caudex/v15/esDQ311QOP6BJUrIyviAnb4eEw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDS311QOP6BJUr4yPKEv7sOE4in.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caudex/v15/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/caudex/v15/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caveat\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjfJ9SIKjYBxPigs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjcB9SIKjYBxPigs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjSx6SIKjYBxPigs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/caveat/v17/WnznHAc5bAfYB2QRah7pcpNvOx-pjRV6SIKjYBxPigs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Caveat Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cedarville Cursive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ceviche One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chakra Petch\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/chakrapetch/v9/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Changa\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/changa/v20/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Changa One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/changaone/v18/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/changaone/v18/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chango\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chango/v21/2V0cKI0OB5U7WaJyz324TFUaAw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charis SIL\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charissil/v1/oPWK_kV3l-s-Q8govXvKrPrmYjZ2Xn0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWI_kV3l-s-Q8govXvKnPjsZhRzTn2Ozw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charissil/v1/oPWJ_kV3l-s-Q8govXvKlEbJRj5dQnSX1ko.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/charissil/v1/oPWX_kV3l-s-Q8govXvKnPjU2jtXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charm\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charm/v10/7cHmv4oii5K0MeYvIe804WIo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charm/v10/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Charmonman\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/charmonman/v18/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chathura\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/chathura/v20/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chathura/v20/_gP71R7-rzUuVjim418goUC5S-Zy.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/chathura/v20/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chau Philomene One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chauphilomeneone/v15/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chela One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chelsea Market\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chenla\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherish\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherish/v7/ll88K2mXUyqsDsTN5iDCI6IJjg8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherry Cream Soda\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cherry Swash\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cherryswash/v18/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chewy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wk5xIDMfO-ed.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chicle\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chicle/v21/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chilanka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chilanka/v18/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chivo\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/chivo/v17/va9I4kzIxd1KFoBvS-J3kbDP.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/chivo/v17/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/chivo/v17/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Chonburi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/chonburi/v10/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cinzel\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnTYrvDE5ZdqU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-uTnTYrvDE5ZdqU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-gjgTYrvDE5ZdqU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-jHgTYrvDE5ZdqU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-lbgTYrvDE5ZdqU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cinzel/v19/8vIU7ww63mVu7gtR-kwKxNvkNOjw-n_gTYrvDE5ZdqU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cinzel Decorative\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/cinzeldecorative/v14/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Clicker Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8JUIMapaN39I.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/coda/v21/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coda Caption\",\r\n      \"variants\": [\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"800\": \"http://fonts.gstatic.com/s/codacaption/v19/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Codystar\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/codystar/v15/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/codystar/v15/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coiny\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PXwbElSvO5Tc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Combo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comfortaa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v40\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/comfortaa/v40/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comforter\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comforter/v5/H4clBXOCl8nQnlaql3Qa6JG8iqeuag.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comforter Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comforterbrush/v5/Y4GTYa1xVSggrfzZI5WMjxRaOz0jwLL9Th8YYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Comic Neue\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/comicneue/v8/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coming Soon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Commissioner\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni-IO9pOXuRoaY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi_IO9pOXuRoaY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ia_IO9pOXuRoaY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Ni_IO9pOXuRoaY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Oq_IO9pOXuRoaY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Aa4IO9pOXuRoaY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5D-4IO9pOXuRoaY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5Fi4IO9pOXuRoaY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/commissioner/v13/tDbe2o2WnlgI0FNDgduEk4jAhwgIy5k8SlfU5HG4IO9pOXuRoaY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Concert One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/concertone/v17/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Condiment\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/condiment/v20/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Content\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/content/v24/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/content/v24/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Contrail One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/contrailone/v15/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Convergence\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cookie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cookie/v17/syky-y18lb0tSbfNlQCT9tPdpw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Copse\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb0djHkihUb-A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Corben\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/corben/v19/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/corben/v19/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Corinthia\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO_EBrAnchaJyPMHE0FUfAL3EsHiA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/corinthia/v9/wEO6EBrAnchaJyPMHE097d8v1GAbgbLXQA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFk9TQ7Rg7A2uwYs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTQ7Rg7A2uwYs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFiNTQ7Rg7A2uwYs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFs9UQ7Rg7A2uwYs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFvZUQ7Rg7A2uwYs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQ9fdq6C-r0YvxdA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQq_dq6C-r0YvxdA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQmfdq6C-r0YvxdA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQdfBq6C-r0YvxdA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorant/v18/H4c0BXOCl9bbnla_nHIq6oGzilJm9otsA9kQTPBq6C-r0YvxdA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Garamond\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantgaramond/v16/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Infant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cormorantinfant/v17/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant SC\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantsc/v17/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Unicase\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantunicase/v24/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cormorant Upright\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cormorantupright/v18/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Courgette\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/courgette/v13/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Courier Prime\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/courierprime/v7/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/courierprime/v7/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cousine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cousine/v25/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cousine/v25/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cousine/v25/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Coustard\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/coustard/v16/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Covered By Your Grace\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/coveredbyyourgrace/v15/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crafty Girls\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Creepster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crete Round\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/creteround/v14/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/creteround/v14/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crimson Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/crimsonpro/v23/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crimson Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/crimsontext/v19/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Croissant One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/croissantone/v20/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Crushed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/crushed/v25/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cuprum\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6ZjzSJjQjgnU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmg9f6ZjzSJjQjgnU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgzv9ZjzSJjQjgnU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/cuprum/v20/dg45_pLmvrkcOkBnKsOzXyGWTBcmgwL9ZjzSJjQjgnU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25jn_YIhYmknUPEA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25vH_YIhYmknUPEA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25UHjYIhYmknUPEA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/cuprum/v20/dg47_pLmvrkcOkBNI_FMh0j91rkhli25aXjYIhYmknUPEA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cute Font\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutefont/v20/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cutive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutive/v17/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Cutive Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/cutivemono/v14/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/dmmono/v10/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/dmsans/v11/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Serif Display\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmserifdisplay/v10/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmserifdisplay/v10/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DM Serif Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dmseriftext/v10/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/dmseriftext/v10/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Damion\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/damion/v14/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dancing Script\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dancingscript/v24/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dangrek\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dangrek/v26/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Darker Grotesque\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/darkergrotesque/v7/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"David Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/davidlibre/v12/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dawning of a New Day\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dawningofanewday/v16/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Days One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/daysone/v14/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dekko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dekko/v19/46khlb_wWjfSrttFR0vsfl1B.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dela Gothic One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/delagothicone/v10/~ChEKD0RlbGEgR290aGljIE9uZSAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/delius/v15/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/deliusswashcaps/v19/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Delius Unicase\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/deliusunicase/v26/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Della Respira\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dellarespira/v18/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Denk One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/denkone/v15/dg4m_pzhrqcFb2IzROtHpbglShon.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Devonshire\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/devonshire/v21/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dhurjati\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dhurjati/v20/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Didact Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/didactgothic/v19/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Diplomata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/diplomata/v24/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Diplomata SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/diplomatasc/v21/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Do Hyeon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dohyeon/v16/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dokdo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dokdo/v15/esDf315XNuCBLxLo4NaMlKcH.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Domine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAI10VErGuW8Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X0DAI10VErGuW8Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X6zHI10VErGuW8Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/domine/v19/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X5XHI10VErGuW8Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Donegal One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/donegalone/v20/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dongle\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeEcxrYjWNzXvVPA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dongle/v8/sJoF3Ltdjt6VPkqmveRPah6RxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dongle/v8/sJoG3Ltdjt6VPkqeActrYjWNzXvVPA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Doppio One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dorsa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dorsa/v23/yYLn0hjd0OGwqo493XCFxAnQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dosis\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/dosis/v27/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DotGothic16\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dotgothic16/v15/v6-QGYjBJFKgyw5nSoDAGE7L435YPFrT.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dr Sugiyama\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/drsugiyama/v22/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Duru Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/durusans/v19/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"DynaPuff\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSxYu6YjrSRs4wn8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RSyQu6YjrSRs4wn8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS8gp6YjrSRs4wn8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/dynapuff/v1/z7N5dRvsZDIVHbYPMhZJ3HQ83UaSu4uhr7-ZFeoYkgAr1x8RS_Ep6YjrSRs4wn8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Dynalight\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/dynalight/v18/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"EB Garamond\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/ebgaramond/v26/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eagle Lake\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eaglelake/v20/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"East Sea Dokdo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eastseadokdo/v20/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eater\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eater/v21/mtG04_FCK7bOvpu2u3FwsXsR.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Economica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/economica/v13/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/economica/v13/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/economica/v13/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Eczar\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXHd6WqTIVKWJKWg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXL96WqTIVKWJKWg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXw9mWqTIVKWJKWg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDX-tmWqTIVKWJKWg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/eczar/v17/BXR2vF3Pi-DLmxcpJB-qbNTyTMDXndmWqTIVKWJKWg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu NSW ACT Foundation\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9tovGLeC-sfguJ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki9fovGLeC-sfguJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-zpfGLeC-sfguJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edunswactfoundation/v1/raxRHjqJtsNBFUi8WO0vUBgc9D-2lV_oQdCAYlt_QTQ0vUxJki-KpfGLeC-sfguJ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu QLD Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE4E3oebi6vyVWCN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE423oebi6vyVWCN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7a2Yebi6vyVWCN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eduqldbeginner/v1/AMOHz5iUuHLEMNXyohhc_Y56PR3A8dNLF_w3Ka4HKE7j2Yebi6vyVWCN.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu SA Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9989fo1yBydUEDs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9-09fo1yBydUEDs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9wE6fo1yBydUEDs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edusabeginner/v1/rnC_-xRb1x-1lHXnLaZZ2xOoLIGfU3L82irpr_3C9zg6fo1yBydUEDs.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu TAS Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HwemkrBWRhvk02.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_HCemkrBWRhvk02.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EufWkrBWRhvk02.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/edutasbeginner/v1/ZXuwe04WubHfGVY-1TcNg7AFUmshg8jIUTzK3r34f_EXfWkrBWRhvk02.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Edu VIC WA NT Beginner\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OXlPmFXwnpkeGR.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-OllPmFXwnpkeGR.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-NJk_mFXwnpkeGR.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/eduvicwantbeginner/v1/jiz2RF1BuW9OwcnNPxLl4KfZCHd9nFtd5Tu7stCpElYpvPfZZ-Nwk_mFXwnpkeGR.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"El Messiri\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe65ghj3OoapG.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXCe65ghj3OoapG.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUufK5ghj3OoapG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/elmessiri/v16/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuUXfK5ghj3OoapG.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Electrolize\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/electrolize/v14/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Elsie\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elsie/v12/BCanqZABrez54yYu9slAeLgX.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/elsie/v12/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Elsie Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/elsieswashcaps/v21/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Emblema One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Emilys Candy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/emilyscandy/v13/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHiZtWP7FJCt2c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHjZtWP7FJCt2c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGD_jZtWP7FJCt2c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGGHjZtWP7FJCt2c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGFPjZtWP7FJCt2c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGL_kZtWP7FJCt2c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGIbkZtWP7FJCt2c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGOHkZtWP7FJCt2c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesans/v15/LDIcapOFNxEwR-Bd1O9uYNmnUQomAgE25imKSbHhROjLsZBWTSrQGMjkZtWP7FJCt2c.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanscondensed/v10/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Expanded\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesansexpanded/v10/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhn8c9NOEEClIc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhm8c9NOEEClIc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HCZm8c9NOEEClIc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HHhm8c9NOEEClIc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HEpm8c9NOEEClIc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HKZh8c9NOEEClIc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HJ9h8c9NOEEClIc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HPhh8c9NOEEClIc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssc/v8/jVyp7nLwCGzQ9zE7ZyRg0QRXHPZc_uUA6Kb3VJWLE_Pdtm7lcD6qvXT1HNFh8c9NOEEClIc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemicondensed/v10/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Encode Sans Semi Expanded\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/encodesanssemiexpanded/v18/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Engagement\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/engagement/v22/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Englebert\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/englebert/v17/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Enriqueta\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/enriqueta/v15/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/enriqueta/v15/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ephesis\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ephesis/v7/uU9PCBUS8IerL2VG7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Epilogue\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDLiDJXVigHPVA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDPiDJXVigHPVA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXbjPiDJXVigHPVA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXMDPiDJXVigHPVA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXAjPiDJXVigHPVA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX7jTiDJXVigHPVA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OX1zTiDJXVigHPVA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXsDTiDJXVigHPVA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZMFGj5hxF0EhjimngomvnCCtqb30OXmTTiDJXVigHPVA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKTp_RqATfVHNU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKT5_RqATfVHNU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HBUT5_RqATfVHNU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HAKT5_RqATfVHNU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HA4T5_RqATfVHNU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDUSJ_RqATfVHNU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HDtSJ_RqATfVHNU.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCKSJ_RqATfVHNU.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/epilogue/v13/O4ZCFGj5hxF0EhjimlIhqAYaY7EBcUSC-HCjSJ_RqATfVHNU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Erica One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ericaone/v23/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Esteban\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/esteban/v14/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Estonia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/estonia/v9/7Au_p_4ijSecA1yHCCL8zkwMIFg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Euphoria Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/euphoriascript/v16/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ewert\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ewert/v21/va9I4kzO2tFODYBvS-J3kbDP.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Exo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/exo/v20/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/exo/v20/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Exo 2\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/exo2/v20/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/exo2/v20/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Expletus Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2s1oFQTcXfMm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSq2s1oFQTcXfMm.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaRG3c1oFQTcXfMm.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaR_3c1oFQTcXfMm.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmSUrHwD-WOMmKKY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmRcrHwD-WOMmKKY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmfssHwD-WOMmKKY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/expletussans/v24/RLpoK5v5_bqufTYdnhFzDj2ddfsCtKHbhOZyCrFQmcIsHwD-WOMmKKY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Explora\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/explora/v7/tsstApxFfjUH4wrvc1qPonC3vqc.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fahkwang\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/fahkwang/v16/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Familjen Grotesk\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMGJaSztc1jcEYq2.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMG7aSztc1jcEYq2.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFXbiztc1jcEYq2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw3LZR9ZHiDnImG6-NEMQ41wby8WRnYsfkunR_eGfMFubiztc1jcEYq2.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKsSueVz-FJq2Rv4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKvaueVz-FJq2Rv4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKhqpeVz-FJq2Rv4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/familjengrotesk/v4/Qw31ZR9ZHiDnImG6-NEMQ41wby8WbH8egZPOLG0oe9RBKiOpeVz-FJq2Rv4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fanwood Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fanwoodtext/v15/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Farro\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/farro/v14/i7dEIFl3byGNHZVNHLq2cV5d.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/farro/v14/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Farsan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/farsan/v18/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fascinate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fascinate/v21/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fascinate Inline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fascinateinline/v22/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Faster One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fasterone/v17/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fasthand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fasthand/v26/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fauna One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/faunaone/v13/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Faustina\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHls3IEvGVWWe8tbEg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/faustina/v16/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsAoYvGVWWe8tbEg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsKZWl-SWc5LEnoF.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/faustina/v16/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsJHXV-SWc5LEnoF.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Federant\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/federant/v25/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Federo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Felipa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/felipa/v19/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fenix\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5ostKzAFvs8o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Festive\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/festive/v7/cY9Ffj6KX1xcoDWhFtfgy9HTkak.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Figtree\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_chQF5ewkEU4HTy.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5ewkEU4HTy.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5ewkEU4HTy.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_ehR15ewkEU4HTy.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_eYR15ewkEU4HTy.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_f_R15ewkEU4HTy.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/figtree/v1/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_fWR15ewkEU4HTy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Finger Paint\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fingerpaint/v15/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Finlandica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19A7rEjx9i5ss3a3.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19AJrEjx9i5ss3a3.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dlq0jx9i5ss3a3.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFsOGk-8vAc7lEtg0aSyZCty9GSsPBE19Dcq0jx9i5ss3a3.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz76Cy_CpOtma3uNQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz75Ky_CpOtma3uNQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz7361_CpOtma3uNQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/finlandica/v3/-nFuOGk-8vAc7lEtg0aS45mfNAn722rq0MXz70e1_CpOtma3uNQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Code\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firacode/v21/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/firamono/v14/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firamono/v14/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasans/v16/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasans/v16/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasans/v16/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasanscondensed/v10/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fira Sans Extra Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/firasansextracondensed/v10/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fjalla One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fjallaone/v13/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fjord One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flamenco\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/flamenco/v18/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssaWGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flavors\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flavors/v22/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fleur De Leah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fleurdeleah/v7/AYCNpXX7ftYZWLhv9UmPJTMC5vat4I_Gdq0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Block\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowblock/v7/wlp0gwfPCEB65UmTk-d6-WZlbCBXE_I.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Circular\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowcircular/v7/lJwB-pc4j2F-H8YKuyvfxdZ45ifpWdr2rIg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Flow Rounded\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/flowrounded/v7/-zki91mtwsU9qlLiGwD4oQX3oZX-Xup87g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fondamento\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fondamento/v16/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fontdiner Swanky\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fontdinerswanky/v19/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Forum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/forum/v16/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Francois One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/francoisone/v20/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Frank Ruhl Libre\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/frankruhllibre/v12/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fraunces\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxqjDvTShUtWNg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxujDvTShUtWNg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIc6RujDvTShUtWNg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIctxujDvTShUtWNg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIchRujDvTShUtWNg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcaRyjDvTShUtWNg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcUByjDvTShUtWNg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcNxyjDvTShUtWNg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/fraunces/v24/6NUh8FyLNQOQZAnv9bYEvDiIdE9Ea92uemAk_WBq8U_9v0c2Wa0K7iN7hzFUPJH58nib1603gg7S2nfgRYIcHhyjDvTShUtWNg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTP7Wp05GNi3k.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLTf7Wp05GNi3k.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1gVTf7Wp05GNi3k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1hLTf7Wp05GNi3k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1h5Tf7Wp05GNi3k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1iVSv7Wp05GNi3k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1isSv7Wp05GNi3k.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jLSv7Wp05GNi3k.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/fraunces/v24/6NVf8FyLNQOQZAnv9ZwNjucMHVn85Ni7emAe9lKqZTnbB-gzTK0K1ChJdt9vIVYX9G37lvd9sPEKsxx664UJf1jiSv7Wp05GNi3k.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Freckle Face\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/freckleface/v14/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredericka the Great\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/frederickathegreat/v15/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredoka\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OryLMFuOLlNldbw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3O8SLMFuOLlNldbw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OwyLMFuOLlNldbw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OLyXMFuOLlNldbw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fredoka/v9/X7nP4b87HvSqjb_WIi2yDCRwoQ_k7367_B-i2yQag0-mac3OFiXMFuOLlNldbw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fredoka One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fredokaone/v13/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Freehand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/freehand/v27/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fresca\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fresca/v18/6ae94K--SKgCzbM2Gr0W13DKPA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Frijole\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fruktur\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/fruktur/v26/SZc73FHsOru5QYsMTz_MlWjX4DJXgQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fugaz One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fugazone/v15/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fuggles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fuggles/v8/k3kQo8UEJOlD1hpOTd7iL0nAMaM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Fuzzy Bubbles\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLGKZMbrgv9pwtjPEVNV0F2NnP5Zxsreko.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/fuzzybubbles/v5/6qLbKZMbrgv9pwtjPEVNV0F2Ds_WQxMAZkM1pn4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"GFS Didot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gfsdidot/v15/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"GFS Neohellenic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gfsneohellenic/v25/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gabriela\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gabriela/v14/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gaegu\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGfUVB6Up9NU6ZLodgzydtk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gaegu/v15/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gafata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gafata/v16/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galada/v14/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galdeano\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Galindo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/galindo/v20/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gamja Flower\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gamjaflower/v20/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gantari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOz3wa5GD2qnm.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gOj3wa5GD2qnm.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g1-Oj3wa5GD2qnm.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0gOj3wa5GD2qnm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g0SOj3wa5GD2qnm.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3-PT3wa5GD2qnm.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g3HPT3wa5GD2qnm.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2gPT3wa5GD2qnm.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gantari/v1/jVyV7nvyB2HL8iZyDk4GVvSZ5MtC9g2JPT3wa5GD2qnm.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWyYZWh37nmpWc.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVWzYZWh37nmpWc.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeYuzYZWh37nmpWc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoedWzYZWh37nmpWc.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeeezYZWh37nmpWc.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeQu0YZWh37nmpWc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeTK0YZWh37nmpWc.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeVW0YZWh37nmpWc.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/gantari/v1/jVyb7nvyB2HL8iZyJEc0qSzwj1Hs8RjoeXy0YZWh37nmpWc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gayathri\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoQzAb429DbBilWLIA48J_wBugA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gayathri/v15/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gelasio\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gelasio/v10/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gemunu Libre\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iJPvSLeMXPIWA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp00aJPvSLeMXPIWA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0xiJPvSLeMXPIWA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0yqJPvSLeMXPIWA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp08aOPvSLeMXPIWA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp0_-OPvSLeMXPIWA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gemunulibre/v8/X7n34bQ6Cfy7jKGXVE_YlqnbEQAFP-PIuTCp05iOPvSLeMXPIWA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Genos\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqknorUK6K7ZsAg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKkjorUK6K7ZsAg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwV9EjorUK6K7ZsAg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVqkjorUK6K7ZsAg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVmEjorUK6K7ZsAg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVdE_orUK6K7ZsAg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVTU_orUK6K7ZsAg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVKk_orUK6K7ZsAg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/genos/v6/SlGNmQqPqpUOYTYjacb0Hc91fTwVA0_orUK6K7ZsAg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA70i-CbN8Ard7.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA7ki-CbN8Ard7.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgte7ki-CbN8Ard7.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsA7ki-CbN8Ard7.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgsy7ki-CbN8Ard7.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgve6Ui-CbN8Ard7.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgvn6Ui-CbN8Ard7.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYguA6Ui-CbN8Ard7.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/genos/v6/SlGPmQqPqpUOYRwqWzksdKTv0zsAYgup6Ui-CbN8Ard7.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Book Basic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookbasic/v16/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Book Plus\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFL2-RHBgUK5fbjKxRpbBtJPyRpofKfdbLOrdPV.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFN2-RHBgUK5fbjKxRpbBtJPyRpocKdf7bsqMPVZb4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFO2-RHBgUK5fbjKxRpbBtJPyRpocojWpbGhs_cfKe1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumbookplus/v1/vEFA2-RHBgUK5fbjKxRpbBtJPyRpocKdRwrDjMv-ebe1Els.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gentium Plus\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gentiumplus/v1/Iurd6Ytw-oSPaZ00r2bNe8VpjJtM6G0t9w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurD6Ytw-oSPaZ00r2bNe8VZjpFIymg9957e.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurC6Ytw-oSPaZ00r2bNe8VRMLRo4EYx_ofHsw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/gentiumplus/v1/IurA6Ytw-oSPaZ00r2bNe8VZjqn05Uw13ILXs-h6.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geo/v19/CSRz4zRZlufVL3BmQjlCbQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/geo/v19/CSRx4zRZluflLXpiYDxSbf8r.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Georama\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvktmQsL5_tgbg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mvgtmQsL5_tgbg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5RPgtmQsL5_tgbg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5GvgtmQsL5_tgbg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5KPgtmQsL5_tgbg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5xP8tmQsL5_tgbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5_f8tmQsL5_tgbg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5mv8tmQsL5_tgbg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/georama/v8/MCo5zAn438bIEyxFf6swMnNpvPcUwW4u4yRcDh-ZjxApn9K5s_8tmQsL5_tgbg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2wEPxf5wbh3T.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF2gEPxf5wbh3T.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rub2gEPxf5wbh3T.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rvF2gEPxf5wbh3T.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rv32gEPxf5wbh3T.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsb3QEPxf5wbh3T.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rsi3QEPxf5wbh3T.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rtF3QEPxf5wbh3T.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/georama/v8/MCo_zAn438bIEyxFVaIC0ZMQ72G6xnvmodYVPOBB5nuzMdWs0rts3QEPxf5wbh3T.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geostar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geostar/v22/sykz-yx4n701VLOftSq9-trEvlQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Geostar Fill\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/geostarfill/v22/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Germania One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gideon Roman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gideonroman/v7/e3tmeuGrVOys8sxzZgWlmXoge0PWovdU4w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gidugu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gidugu/v21/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gilda Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gildadisplay/v13/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Girassol\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/girassol/v16/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Give You Glory\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/giveyouglory/v15/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glass Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/glassantiqua/v20/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glegoo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/glegoo/v14/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gloria Hallelujah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gloriahallelujah/v17/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Glory\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwIiDpn-dDi9EOQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQImDpn-dDi9EOQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQnomDpn-dDi9EOQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQwImDpn-dDi9EOQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQ8omDpn-dDi9EOQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQHo6Dpn-dDi9EOQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQJ46Dpn-dDi9EOQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/glory/v9/q5uasoi9Lf1w5t3Est24nq9blIRQQI6Dpn-dDi9EOQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/glory/v9/q5uYsoi9Lf1w5vfNgCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gluten\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7B1Luni7ciJh.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb7R1Luni7ciJh.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8UF7R1Luni7ciJh.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vb7R1Luni7ciJh.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Vp7R1Luni7ciJh.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8WF6h1Luni7ciJh.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8W86h1Luni7ciJh.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xb6h1Luni7ciJh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gluten/v9/Hhy_U5gk9fW7OUdVIPh2zD_RSqQJ__A15jgJsn-Bhb_yI8Xy6h1Luni7ciJh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goblin One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goblinone/v22/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gochi Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gochihand/v16/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goldman\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goldman/v15/pe0uMIWbN4JFplR2LDJ4Bt-7G98.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/goldman/v15/pe0rMIWbN4JFplR2FI5XIteQB9Zra1U.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gorditas\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gorditas/v20/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gorditas/v20/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gothic A1\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/gothica1/v13/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gotu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gotu/v14/o-0FIpksx3QOlH0Lioh6-hU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Goudy Bookletter 1911\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/goudybookletter1911/v15/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gowun Batang\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwSs5nhRMIjYsdSgcMa3wRhXLH-yuAtLw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gowunbatang/v7/ijwNs5nhRMIjYsdSgcMa3wRZ4J7awssxJii23w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gowun Dodum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gowundodum/v7/3Jn5SD_00GqwlBnWc1TUJF0FfORL0fNy.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Graduate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/graduate/v13/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grand Hotel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grandhotel/v13/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grandstander\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1-_D3jWttFGmQk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9--D3jWttFGmQk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQDwG-D3jWttFGmQk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD1--D3jWttFGmQk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD22-D3jWttFGmQk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD4G5D3jWttFGmQk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD7i5D3jWttFGmQk.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD9-5D3jWttFGmQk.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6fawtA-GpSsTWrnNHPCSIMZhhKpFjyNZIQD_a5D3jWttFGmQk.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zrcsvNDiQlBYQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzvcsvNDiQlBYQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9uTvcsvNDiQlBYQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf95zvcsvNDiQlBYQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf91TvcsvNDiQlBYQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9OTzcsvNDiQlBYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ADzcsvNDiQlBYQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9ZzzcsvNDiQlBYQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/grandstander/v11/ga6ZawtA-GpSsTWrnNHPCSImbyq1fDGZrzwXGpf9TjzcsvNDiQlBYQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grape Nuts\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grapenuts/v2/syk2-yF4iLM2RfKj4F7k3tLvol2RN1E.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gravitas One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gravitasone/v15/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Great Vibes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/greatvibes/v14/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grechen Fuemen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/grechenfuemen/v7/vEFI2_tHEQ4d5ObgKxBzZh0MAWgc-NaXXq7H.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grenze\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/grenze/v14/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grenze Gotisch\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz5UcICdYPSd_w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rz9UcICdYPSd_w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5cT9UcICdYPSd_w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5Lz9UcICdYPSd_w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5HT9UcICdYPSd_w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i58ThUcICdYPSd_w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5yDhUcICdYPSd_w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5rzhUcICdYPSd_w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/grenzegotisch/v12/Fh4hPjjqNDz1osh_jX9YfjudpBJBNV5y5wf_k1i5hjhUcICdYPSd_w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Grey Qo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/greyqo/v7/BXRrvF_Nmv_TyXxNDOtQ9Wf0QcE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Griffy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/griffy/v21/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gruppo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gruppo/v16/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gudea\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp-CP9IGON7Ez.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/gudea/v15/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gudea/v15/neIIzCqgsI0mp9gz26WGHK06UY30.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gugi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gugi/v13/A2BVn5dXywshVA6A9DEfgqM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gulzar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gulzar/v5/Wnz6HAc9eB3HB2ILYTwZqg_MPQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gupter\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gupter/v14/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gupter/v14/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gurajada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gurajada/v15/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Gwendolyn\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBXXvoO_M3CSss-d7ee5JRLkAXbMQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/gwendolyn/v5/qkBSXvoO_M3CSss-d7emWLtvmC7HONiSFQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Habibi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hachi Maru Pop\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hachimarupop/v17/HI_TiYoRLqpLrEiMAuO9Ysfz7rW1EM_btd8u.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hahmlet\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKOdjobsO-aVxn.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKONjobsO-aVxn.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RgUONjobsO-aVxn.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RhKONjobsO-aVxn.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4Rh4ONjobsO-aVxn.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RiUP9jobsO-aVxn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RitP9jobsO-aVxn.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjKP9jobsO-aVxn.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/hahmlet/v9/BngXUXpCQ3nKpIo0TfPyfCdXfaeU4RjjP9jobsO-aVxn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Halant\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/halant/v13/u-4-0qaujRI2PbsX39Jmky12eg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/halant/v13/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hammersmith One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanalei\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHXzgmVydREus.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanalei Fill\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanaleifill/v21/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Handlee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/handlee/v14/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hanuman\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-04-21\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJzdNvD15HhpJJBQMLdPKNiaRpFvg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQAr_HIlMZRNcp0o.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/hanuman/v22/VuJ0dNvD15HhpJJBQCL6HIlMZRNcp0o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Happy Monkey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Harmattan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/harmattan/v15/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/harmattan/v15/gokpH6L2DkFvVvRp9Xpr92-HmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Headland One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/headlandone/v15/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Heebo\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/heebo/v21/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Henny Penny\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hepta Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/heptaslab/v17/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Herr Von Muellerhoff\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/herrvonmuellerhoff/v15/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hi Melody\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/himelody/v13/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hina Mincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hinamincho/v8/2sDaZGBRhpXa2Jjz5w5LAGW8KbkVZTHR.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hind/v16/5aU69_a8oxmIRG5yBROzkDM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hind/v16/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Guntur\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindguntur/v12/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Madurai\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindmadurai/v11/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Siliguri\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindsiliguri/v12/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hind Vadodara\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/hindvadodara/v12/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Holtwood One SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/holtwoodonesc/v16/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Homemade Apple\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/homemadeapple/v18/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Homenaje\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hubballi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hubballi/v4/o-0JIpUj3WIZ1RFN56B7yBBNYuSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Hurricane\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/hurricane/v5/pe0sMIuULZxTolZ5YldyAv2-C99ycg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexmono/v12/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsans/v14/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3MZRtWPQCuHme67tEYUIx3Kh0PHR9N6YNe3PC5eMlAMg0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPy_dCTVsVJKxTs.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOW_tCTVsVJKxTs.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3CZRtWPQCuHme67tEYUIx3Kh0PHR9N6bs61vSbfdlA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPO_9CTVsVJKxTs.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YPi-NCTVsVJKxTs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansarabic/v7/Qw3NZRtWPQCuHme67tEYUIx3Kh0PHR9N6YOG-dCTVsVJKxTs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexsanscondensed/v13/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXB3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HMUjwUcjwCEQq.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HnWnQe-b8AV0z0w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H-WrQe-b8AV0z0w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXH3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O__VUL0c83gCA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HoWvQe-b8AV0z0w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_HjWzQe-b8AV0z0w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansdevanagari/v7/XRXA3JCMvG4IDoS9SubXB6W-UX5iehIMBFR2-O_H6W3Qe-b8AV0z0w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa4qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEXB-l0VqDaM7C4.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVt230_hjqF9Tc2.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUJ2H0_hjqF9Tc2.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa2qYENg9Kw1mpLpO0bGM5lfHAAZHhDXH2l8Fk3rSaM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEVR2X0_hjqF9Tc2.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEV93n0_hjqF9Tc2.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanshebrew/v8/BCa5qYENg9Kw1mpLpO0bGM5lfHAAZHhDXEUZ330_hjqF9Tc2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans KR\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFM2-VJISZe3O_rc3ZVYh4aTwNOyra_X5zCpMrMfA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyhqef7bsqMPVZb4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyn6df7bsqMPVZb4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFK2-VJISZe3O_rc3ZVYh4aTwNO8tK1W77HtMo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOyiacf7bsqMPVZb4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOygqbf7bsqMPVZb4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsanskr/v7/vEFN2-VJISZe3O_rc3ZVYh4aTwNOym6af7bsqMPVZb4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JNje1VVIzcq1HzJq2AEdo2Tj_qvLqEatYlR8ZKUqcX.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqExvcFbehGW74OXw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEovQFbehGW74OXw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JPje1VVIzcq1HzJq2AEdo2Tj_qvLq8DtwhZcNaUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE-vUFbehGW74OXw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqE1vIFbehGW74OXw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthai/v7/m8JMje1VVIzcq1HzJq2AEdo2Tj_qvLqEsvMFbehGW74OXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Sans Thai Looped\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss5AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_HaKpHOtFCQ76Q.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_NqrhFmDGC0i8Cc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_L6ohFmDGC0i8Cc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss_AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30LxBKAoFGoBCQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_OaphFmDGC0i8Cc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_MquhFmDGC0i8Cc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexsansthailooped/v7/tss6AoJJRAhL3BTrK3r2xxbFhvKfyBB6l7hHT30L_K6vhFmDGC0i8Cc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IBM Plex Serif\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibmplexserif/v15/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell DW Pica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldwpica/v16/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell DW Pica SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Double Pica\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfelldoublepica/v14/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Double Pica SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell English\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellenglish/v14/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell English SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell French Canon\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell French Canon SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Great Primer\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/imfellgreatprimer/v21/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"IM Fell Great Primer SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ibarra Real Nova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdg5MDtVT9TWIvS.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXdS5MDtVT9TWIvS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXe-48DtVT9TWIvS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlSdQiA-DBIDCcaWtQzL4BZHoiDundw4ATyjed3EXeH48DtVT9TWIvS.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopyiuXztxXZvSkTo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKopxquXztxXZvSkTo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop_apXztxXZvSkTo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ibarrarealnova/v20/sZlsdQiA-DBIDCcaWtQzL4BZHoiDkH5CH9yb5n3ZFmKop8-pXztxXZvSkTo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Iceberg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/iceberg/v20/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Iceland\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/iceland/v16/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imbue\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iWfOsNNK-Q4xY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iXfOsNNK-Q4xY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP5aXfOsNNK-Q4xY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP8iXfOsNNK-Q4xY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP_qXfOsNNK-Q4xY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPxaQfOsNNK-Q4xY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoPy-QfOsNNK-Q4xY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP0iQfOsNNK-Q4xY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/imbue/v21/RLpXK5P16Ki3fXhj5cvGrqjocPk4n-gVX3M93TnrnvhoP2GQfOsNNK-Q4xY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imperial Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imperialscript/v3/5DCPAKrpzy_H98IV2ISnZBbGrVNvPenlvttWNg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Imprima\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/imprima/v16/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inconsolata\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v31\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inconsolata/v31/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inder\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4vq6pw-P3U4O.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Indie Flower\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/indieflower/v17/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ingrid Darling\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ingriddarling/v2/LDIrapaJNxUtSuFdw-9yf4rCPsLOub458jGL.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inika\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-phTHRcc2s2XH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inika/v21/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inknut Antiqua\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inknutantiqua/v14/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inria Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/inriasans/v14/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inria Serif\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/inriaserif/v14/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inspiration\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/inspiration/v3/x3dkckPPZa6L4wIg5cZOEvoGnSrlBBsy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inter\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Inter Tight\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw6qXCRToK8EPg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjw-qXCRToK8EPg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjUQ-qXCRToK8EPg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjDw-qXCRToK8EPg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjPQ-qXCRToK8EPg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqXCRToK8EPg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj6AiqXCRToK8EPg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjjwiqXCRToK8EPg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/intertight/v1/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mjpgiqXCRToK8EPg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHi5XgqoUPvi5.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCHy5XgqoUPvi5.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0wcHy5XgqoUPvi5.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xCHy5XgqoUPvi5.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0xwHy5XgqoUPvi5.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ycGC5XgqoUPvi5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0ylGC5XgqoUPvi5.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zCGC5XgqoUPvi5.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/intertight/v1/NGShv5HMAFg6IuGlBNMjxLsC66ZMtb8hyW62x0zrGC5XgqoUPvi5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Irish Grover\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Island Moments\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/islandmoments/v3/NaPBcZfVGvBdxIt7Ar0qzkXJF-TGIohbZ6SY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Istok Web\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/istokweb/v20/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/istokweb/v20/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Italiana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/italiana/v16/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Italianno\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/italianno/v16/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Itim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/itim/v10/0nknC9ziJOYewARKkc7ZdwU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jacques Francois\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancois/v20/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jacques Francois Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jacquesfrancoisshadow/v21/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jaldi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jaldi/v12/or3sQ67z0_CI30NUZpD_B6g8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jaldi/v12/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"JetBrains Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yK1jPVmUsaaDhw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKxjPVmUsaaDhw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8lqxjPVmUsaaDhw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8yKxjPVmUsaaDhw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8-qxjPVmUsaaDhw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8FqtjPVmUsaaDhw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8L6tjPVmUsaaDhw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDbY2o-flEEny0FZhsfKu5WU4zr3E_BX0PnT8RD8SKtjPVmUsaaDhw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-Lf1OQk6OThxPA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LflOQk6OThxPA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO_VflOQk6OThxPA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-LflOQk6OThxPA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO-5flOQk6OThxPA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9VeVOQk6OThxPA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO9seVOQk6OThxPA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/jetbrainsmono/v13/tDba2o-flEEny0FZhsfKu5WU4xD-IQ-PuZJJXxfpAO8LeVOQk6OThxPA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jim Nightshade\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Joan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/joan/v1/ZXupe1oZsqWRbRdH8X1p_Ng.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jockey One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jockeyone/v15/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jolly Lodger\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jomhuria\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jomhuria/v18/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jomolhari\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jomolhari/v14/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Josefin Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinsans/v25/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Josefin Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-07-12\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71mtd3k3K6CcEyI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W79msd3k3K6CcEyI.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W7wesd3k3K6CcEyI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msd3k3K6CcEyI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W72usd3k3K6CcEyI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W74erd3k3K6CcEyI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W776rd3k3K6CcEyI.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzs9L4KZAyK43w.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvHzo9L4KZAyK43w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvwTo9L4KZAyK43w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvnzo9L4KZAyK43w.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvrTo9L4KZAyK43w.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHvQT09L4KZAyK43w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/josefinslab/v20/lW-qwjwOK3Ps5GSJlNNkMalnrxShJj4wo7AR-pHveD09L4KZAyK43w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jost\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/jost/v14/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/jost/v14/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Joti One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jotione/v21/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/jua/v13/co3KmW9ljjAjc-DZCsKgsg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Judson\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/judson/v18/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/judson/v18/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/judson/v18/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Julee\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/julee/v22/TuGfUVB3RpZPQ6ZLodgzydtk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Julius Sans One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/juliussansone/v14/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Junge\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/junge/v20/gokgH670Gl1lUqAdvhB7SnKm.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Jura\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"kayah-li\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/jura/v24/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Just Another Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/justanotherhand/v19/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Just Me Again Down Here\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"K2D\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0ErE6UpvrIw74NL.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erv4QJlJw85ppSGw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er24cJlJw85ppSGw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/k2d/v9/J7aTnpF2V0ETd68tnLcg7w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7aRnpF2V0EjdaUpvrIw74NL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Erg4YJlJw85ppSGw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Err4EJlJw85ppSGw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Ery4AJlJw85ppSGw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/k2d/v9/J7aenpF2V0Er14MJlJw85ppSGw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/k2d/v9/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kadwa\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCm-x5V0g7iphTHRcc2s2XH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kadwa/v10/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Decol\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrwmSqP45sidWf3QmfFW6iyW1EP22OjoA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iKr3gr00i_qb57kA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseidecol/v8/bMrvmSqP45sidWf3QmfFW6iK534r00i_qb57kA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei HarunoUmi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_RiZQSLqBQoAHhK_C6N_nzy_jcGsv5sM8u3mk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcIj_QlMcFwmC9FAU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiharunoumi/v8/HI_WiZQSLqBQoAHhK_C6N_nzy_jcInfWlMcFwmC9FAU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Opti\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldKNThJphYb8_g6c2nlIFle7KlmxuHx.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGGqxY1u7f34DYwn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseiopti/v8/QldXNThJphYb8_g6c2nlIGHiw41u7f34DYwn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaisei Tokumin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8sN5wdZg7xCwuMsylww2ZiQkJf1l0pj946.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnqr_3khpMIzeI6v.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnrj-XkhpMIzeI6v.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kaiseitokumin/v8/Gg8vN5wdZg7xCwuMsylww2ZiQnr_-nkhpMIzeI6v.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kalam\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kalam/v16/YA9dr0Wd4kDdMuhWMibDszkB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kalam/v16/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kameron\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kameron/v15/vm82dR7vXErQxuznsL4wL-XIYH8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kameron/v15/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kanit\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kanit/v12/nKKZ-Go6G5tXcoaSEQGodLxA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kanit/v12/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/kanit/v12/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kantumruy\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruy/v21/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kantumruy/v21/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kantumruy Pro\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urUs0M34dR6dW.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg3urEs0M34dR6dW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg0wrEs0M34dR6dW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1urEs0M34dR6dW.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg1crEs0M34dR6dW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2wq0s0M34dR6dW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2TY5aECkp34vEBSPFOmJxwvk_pilU8OGNfyg2Jq0s0M34dR6dW.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N2OXo_QrdWlcU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7yN3OXo_QrdWlcU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim7_13OXo_QrdWlcU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim76N3OXo_QrdWlcU.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim75F3OXo_QrdWlcU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim731wOXo_QrdWlcU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kantumruypro/v3/1q2RY5aECkp34vEBSPFOmJxwlEbbdY1VU_nxzRim70RwOXo_QrdWlcU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karantina\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxXCgf-P5Oaiw4cw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karantina/v11/buE0po24ccnh31GVMABJ8AA78NVSYw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karantina/v11/buExpo24ccnh31GVMABxTC8f-P5Oaiw4cw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karla\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJqqFENLR7fHGw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDppqqFENLR7fHGw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqqFENLR7fHGw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDypqqFENLR7fHGw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDJp2qFENLR7fHGw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDH52qFENLR7fHGw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/karla/v23/qkBIXvYC6trAT55ZBi1ueQVIjQTDeJ2qFENLR7fHGw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCV0lPZbLXGxGR.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNkcV0lPZbLXGxGR.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlCV0lPZbLXGxGR.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNlwV0lPZbLXGxGR.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmcUElPZbLXGxGR.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNmlUElPZbLXGxGR.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/karla/v23/qkBKXvYC6trAT7RQNNK2EG7SIwPWMNnCUElPZbLXGxGR.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Karma\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/karma/v16/va9I4kzAzMZRGIBvS-J3kbDP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/karma/v16/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Katibeh\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/katibeh/v17/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kaushan Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kaushanscript/v14/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kavivanar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kavivanar/v18/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kavoon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kavoon/v21/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kdam Thmor Pro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kdamthmorpro/v1/EJRPQgAzVdcI-Qdvt34jzurnGA7_j89I8ZWb.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Keania One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/keaniaone/v20/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kelly Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kellyslab/v15/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kenia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kenia/v24/jizURE5PuHQH9qCONUGswfGM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khand\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/khand/v14/TwMA-IINQlQQ0YpVWHU_TBqO.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/khand/v14/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khmer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/khmer/v25/MjQImit_vPPwpF-BpN2EeYmD.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Khula\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/khula/v12/OpNCnoEOns3V7FcJpA_chzJ0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/khula/v12/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kings\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kings/v5/8AtnGsK4O5CYXU_Iq6GSPaHS.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kirang Haerang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiranghaerang/v20/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kite One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiteone/v20/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kiwi Maru\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gNCi0Vxn9R5ShnA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70YjykGkuuDep-hRg6YmACQXzLhTg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kiwimaru/v14/R70djykGkuuDep-hRg6gbCm0Vxn9R5ShnA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Klee One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek-ext\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kleeone/v7/LDIxapCLNRc6A8oT4q4AOeekWPrP.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kleeone/v7/LDI2apCLNRc6A8oT4pbYF8Osc-bGkqIw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Knewave\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"KoHo\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/koho/v16/K2F-fZ5fmddNBikefJbSOos.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/koho/v16/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/koho/v16/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kodchasan\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kodchasan/v16/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Koh Santepheap\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMfW3p6SJbwyGj2rBZyeOrTjNuFHVyTtjNJUWU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtNP3y5mD9ASHz5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMdW3p6SJbwyGj2rBZyeOrTjOPhF1ixsyNJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtdOHy5mD9ASHz5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kohsantepheap/v9/gNMeW3p6SJbwyGj2rBZyeOrTjNtlOny5mD9ASHz5.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kolker Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kolkerbrush/v3/iJWDBXWRZjfKWdvmzwvvog3-7KJ6x8qNUQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kosugi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kosugi/v14/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kosugi Maru\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kosugimaru/v14/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kotta One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Koulen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/koulen/v25/AMOQz46as3KIBPeWgnA9kuYMUg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kranky\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kranky/v24/hESw6XVgJzlPsFnMpheEZo_H_w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kreon\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v32\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kreon/v32/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kristi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kristi/v17/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Krona One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Krub\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/krub/v9/sZlLdRyC6CRYXkYQDLlTW6E.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/krub/v9/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/krub/v9/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kufam\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3lqk7qQCJHvIwYg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3pKk7qQCJHvIwYg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3SK47qQCJHvIwYg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3ca47qQCJHvIwYg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3Fq47qQCJHvIwYg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kufam/v20/C8c-4cY7pG7w_oSJDszBXsKCcBH3P647qQCJHvIwYg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurT6gqNPPcgYp0i.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXurh6gqNPPcgYp0i.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuoN7QqNPPcgYp0i.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXuo07QqNPPcgYp0i.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXupT7QqNPPcgYp0i.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/kufam/v20/C8c84cY7pG7w_q6APDMZN6kY3hbiXup67QqNPPcgYp0i.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kulim Park\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/kulimpark/v14/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumar One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumarone/v17/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumar One Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kumbh Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSyNIXIwSP0XD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqSiNIXIwSP0XD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoq0SiNIXIwSP0XD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorqSiNIXIwSP0XD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNorYSiNIXIwSP0XD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNoo0TSNIXIwSP0XD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNooNTSNIXIwSP0XD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopqTSNIXIwSP0XD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/kumbhsans/v12/c4mw1n92AsfhuCq6tVsaoIx1CHIi4kToNopDTSNIXIwSP0XD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Kurale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/kurale/v11/4iCs6KV9e9dXjho6eAT3v02QFg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"La Belle Aurore\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/labelleaurore/v16/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lacquer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lacquer/v15/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Laila\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/laila/v13/LYjMdG_8nE8jDIRdiidIrEIu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/laila/v13/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lakki Reddy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lakkireddy/v19/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lalezar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lalezar/v14/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lancelot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lancelot/v22/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Langar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/langar/v26/kJEyBukW7AIlgjGVrTVZ99sqrQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lateef\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0bjygbqTb9nQ-RA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0Cj-gbqTb9nQ-RA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lateef/v24/hESw6XVnNCxEvkbMpheEZo_H_w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0Uj6gbqTb9nQ-RA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0fjmgbqTb9nQ-RA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0GjigbqTb9nQ-RA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lateef/v24/hESz6XVnNCxEvkb0BjugbqTb9nQ-RA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lato\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lato/v23/S6uyw4BMUTPHvxk6XweuBCY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lato/v23/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/lato/v23/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lavishly Yours\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lavishlyyours/v2/jizDREVIvGwH5OjiZmX9r5z_WxUY0TY7ikbI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguegothic/v6/qFdR35CBi4tvBz81xy7WG7ep-BQAY7Krj7feObpH_-amidQ6Q9hn.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguescript/v24/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"League Spartan\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oXpBMdcFguczA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoTpBMdcFguczA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMoITpBMdcFguczA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvM_oTpBMdcFguczA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMzITpBMdcFguczA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMIIPpBMdcFguczA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMGYPpBMdcFguczA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMfoPpBMdcFguczA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/leaguespartan/v6/kJEnBuEW6A0lliaV_m88ja5Twtx8BWhtkDVmjZvMV4PpBMdcFguczA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Leckerli One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/leckerlione/v16/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ledger\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lekton\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lekton/v17/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lekton/v17/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lekton/v17/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lemon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lemon/v14/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lemonada\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lemonada/v20/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsX_LBte6KuGEo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sW_LBte6KuGEo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC7sR_LBte6KuGEo.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexend/v17/wlptgwvFAVdoq2_F94zlCfv0bz1WC5IR_LBte6KuGEo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Deca\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48MxArBPCqLNflg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cM1ArBPCqLNflg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4rs1ArBPCqLNflg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1ArBPCqLNflg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1ArBPCqLNflg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4LspArBPCqLNflg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4F8pArBPCqLNflg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4cMpArBPCqLNflg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexenddeca/v17/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4WcpArBPCqLNflg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Exa\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7T6bHHJ8BRq0b.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7TqbHHJ8BRq0b.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9qlTqbHHJ8BRq0b.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9r7TqbHHJ8BRq0b.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9rJTqbHHJ8BRq0b.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9olSabHHJ8BRq0b.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9ocSabHHJ8BRq0b.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9p7SabHHJ8BRq0b.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendexa/v24/UMBCrPdOoHOnxExyjdBeQCH18mulUxBvI9pSSabHHJ8BRq0b.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Giga\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LmE68oo6eepYQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWLiE68oo6eepYQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRChriE68oo6eepYQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC2LiE68oo6eepYQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRC6riE68oo6eepYQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCBr-E68oo6eepYQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCP7-E68oo6eepYQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCWL-E68oo6eepYQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendgiga/v24/PlIuFl67Mah5Y8yMHE7lkUZPlTBo4MWFfNRCcb-E68oo6eepYQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Mega\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fivveyiq9EqQw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcfmvveyiq9EqQw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLr_mvveyiq9EqQw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDL8fmvveyiq9EqQw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLw_mvveyiq9EqQw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLL_6vveyiq9EqQw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLFv6vveyiq9EqQw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLcf6vveyiq9EqQw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendmega/v24/qFdX35aBi5JtHD41zSTFEuTByuvYFuE9IbDLWP6vveyiq9EqQw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Peta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SFyW1YuRTsnfw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSByW1YuRTsnfw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRtyByW1YuRTsnfw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR6SByW1YuRTsnfw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgR2yByW1YuRTsnfw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRNydyW1YuRTsnfw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRDidyW1YuRTsnfw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRaSdyW1YuRTsnfw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendpeta/v24/BXR4vFPGjeLPh0kCfI4OkFX-UTQHSCaxvBgRQCdyW1YuRTsnfw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Tera\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zITdpz0fYxcrQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzMTdpz0fYxcrQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMuTMTdpz0fYxcrQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM5zMTdpz0fYxcrQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiM1TMTdpz0fYxcrQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMOTQTdpz0fYxcrQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMADQTdpz0fYxcrQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMZzQTdpz0fYxcrQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendtera/v24/RrQDbo98_jt_IXnBPwCWtYJLZ3P4hnaGKFiMTjQTdpz0fYxcrQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lexend Zetta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bH0z5jbs8qbts.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bG0z5jbs8qbts.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy4jG0z5jbs8qbts.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy9bG0z5jbs8qbts.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy-TG0z5jbs8qbts.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCywjB0z5jbs8qbts.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCyzHB0z5jbs8qbts.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy1bB0z5jbs8qbts.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/lexendzetta/v24/ll8uK2KYXje7CdOFnEWcU8synQbuVYjYB3BCy3_B0z5jbs8qbts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 128\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128/v26/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 128 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode128text/v26/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39/v19/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Extended\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extended/v25/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Extended Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39extendedtext/v25/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode 39 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcode39text/v26/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Barcode EAN13 Text\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebarcodeean13text/v19/wlpigxXFDU1_oCu9nfZytgIqSG0XRcJm_OQiB96PAGEki52WfA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Baskerville\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librebaskerville/v14/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Bodoni\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6I1fwWzZcOb3U3s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6L9fwWzZcOb3U3s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6FNYwWzZcOb3U3s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm--H45qDWDYULr5OfyZudXzSBgY2oMBGte6GpYwWzZcOb3U3s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcKS_TdMTyQ3syLg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUcGy_TdMTyQ3syLg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUc9yjTdMTyQ3syLg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/librebodoni/v3/_Xm4-H45qDWDYULr5OfyZud9xBKfuwNnnsVZ_UUczijTdMTyQ3syLg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Caslon Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslondisplay/v14/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Caslon Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librecaslontext/v3/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Libre Franklin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsSUB9rIb-JH1g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsWUB9rIb-JH1g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhcMWUB9rIb-JH1g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWUB9rIb-JH1g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhHMWUB9rIb-JH1g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduh8MKUB9rIb-JH1g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhycKUB9rIb-JH1g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhrsKUB9rIb-JH1g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhh8KUB9rIb-JH1g.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RdDMTedX1sGE.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8RNDMTedX1sGE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oYiRNDMTedX1sGE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZ8RNDMTedX1sGE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oZORNDMTedX1sGE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oaiQ9DMTedX1sGE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05oabQ9DMTedX1sGE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05ob8Q9DMTedX1sGE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/librefranklin/v13/jizMREVItHgc8qDIbSTKq4XkRiUawTk7f45UM9y05obVQ9DMTedX1sGE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Licorice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/licorice/v3/t5tjIR8TMomTCAyjNk23hqLgzCHu.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Life Savers\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/lifesavers/v18/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lilita One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lilitaone/v13/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lily Script One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Limelight\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/limelight/v16/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Linden Hill\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lindenhill/v22/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Literata\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG_F_bcTWCWp8g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbE-_F_bcTWCWp8g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbBG_F_bcTWCWp8g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbCO_F_bcTWCWp8g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbM-4F_bcTWCWp8g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbPa4F_bcTWCWp8g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbJG4F_bcTWCWp8g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/literata/v30/or3PQ6P12-iJxAIgLa78DkrbXsDgk0oVDaDPYLanFLHpPf2TbLi4F_bcTWCWp8g.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7XWSUKTt8iVow.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8obXWSUKTt8iVow.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8_7XWSUKTt8iVow.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8zbXWSUKTt8iVow.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8IbLWSUKTt8iVow.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8GLLWSUKTt8iVow.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8f7LWSUKTt8iVow.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/literata/v30/or3NQ6P12-iJxAIgLYT1PLs1Zd0nfUwAbeGVKoRYzNiCp1OUedn8VrLWSUKTt8iVow.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Liu Jian Mao Cao\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/liujianmaocao/v15/~ChIKEExpdSBKaWFuIE1hbyBDYW8gACoECAEYAQ==.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Livvic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/livvic/v13/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/livvic/v13/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/livvic/v13/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lobster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lobster/v28/neILzCirqoswsqX9_oWsMqEzSJQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lobster Two\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lobstertwo/v18/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Outline\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinaoutline/v23/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinashadow/v22/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Sketch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasketch/v21/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Londrina Solid\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/londrinasolid/v15/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Long Cang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/longcang/v17/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lora\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lora/v26/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/lora/v26/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Love Light\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lovelight/v3/t5tlIR0TNJyZWimpNAXDjKbCyTHuspo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Love Ya Like A Sister\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/loveyalikeasister/v16/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Loved by the King\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lovedbytheking/v17/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lovers Quarrel\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/loversquarrel/v21/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luckiest Guy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luckiestguy/v18/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lusitana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/lusitana/v13/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Lustria\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luxurious Roman\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousroman/v3/buEupou_ZcP1w0yTKxJJokVSmbpqYgckeo9RMw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Luxurious Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/luxuriousscript/v5/ahcCv9e7yydulT32KZ0rBIoD7DzMg0rOby1JtYk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSe78nZcsGGycA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51Sa78nZcsGGycA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Cya78nZcsGGycA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5VSa78nZcsGGycA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5Zya78nZcsGGycA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5iyG78nZcsGGycA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5siG78nZcsGGycA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW51SG78nZcsGGycA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus1/v6/R70EjygA28ymD4HgBUGzkN5Eyoj-WpW5_CG78nZcsGGycA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1 Code\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0XHpapwmdZhY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7gN0HHpapwmdZhY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7jT0HHpapwmdZhY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7iN0HHpapwmdZhY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7i_0HHpapwmdZhY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hT13HpapwmdZhY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1code/v7/ypvMbXOOx2xFpzmYJS3N2_J2hBN6RZ5oIp8m_7hq13HpapwmdZhY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 1p\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus1p/v27/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS 2\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa-VxlqHrzNgAw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwua6VxlqHrzNgAw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwZ66VxlqHrzNgAw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwOa6VxlqHrzNgAw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwC66VxlqHrzNgAw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw56mVxlqHrzNgAw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkw3qmVxlqHrzNgAw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwuamVxlqHrzNgAw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplus2/v6/7Auhp_Eq3gO_OGbGGhjdwrDdpeIBxlkwkKmVxlqHrzNgAw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS Code Latin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbB6i5MqF9TRwg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1MbA6i5MqF9TRwg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1BjA6i5MqF9TRwg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1EbA6i5MqF9TRwg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1HTA6i5MqF9TRwg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1JjH6i5MqF9TRwg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mpluscodelatin/v7/hv-ylyV-aXg7x7tULiNXXBA0Np4WMS8fDIymHY8fy8wn4_ifLAtrObKDO0Xf1KHH6i5MqF9TRwg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"M PLUS Rounded 1c\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mplusrounded1c/v15/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ma Shan Zheng\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mashanzheng/v10/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Macondo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/macondo/v21/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Macondo Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/macondoswashcaps/v20/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mada\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mada/v16/7Auwp_0qnzeSTTXMLCrX0kU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mada/v16/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Magra\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/magra/v14/uK_94ruaZus72k5xIDMfO-ed.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/magra/v14/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maiden Orange\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/maidenorange/v25/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maitree\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/maitree/v10/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Major Mono Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/majormonodisplay/v12/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mako\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mako/v18/H4coBX6Mmc_Z0ST09g478Lo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mali\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mali/v9/N0ba2SRONuN4eCrODlxxOd8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bU2SRONuN4SCjECn50Kd_PmA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mali/v9/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mali/v9/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mallanna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mallanna/v13/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mandali\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mandali/v14/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manjari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/manjari/v9/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manjari/v9/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manjari/v9/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manrope\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/manrope/v13/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mansalva\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mansalva/v9/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Manuale\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeG6e7wD1TB_JHHY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeFkfLwD1TB_JHHY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOApA3zRdIWHYr8M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/manuale/v23/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsONRH3zRdIWHYr8M.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marcellus\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marcellus SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marck Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marckscript/v16/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Margarine\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/margarine/v21/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Markazi Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/markazitext/v22/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marko One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/markoone/v22/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marmelad\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marmelad/v15/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Martel\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/martel/v10/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/martel/v10/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Martel Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/martelsans/v12/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Marvel\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/marvel/v14/nwpVtKeoNgBV0qaIkV7ED366zg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/marvel/v14/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/marvel/v14/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mate\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mate/v14/m8JdjftRd7WZ2z28WoXSaLU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mate/v14/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mate SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/matesc/v21/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Maven Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v32\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mavenpro/v32/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"McLaren\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mclaren/v13/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mea Culpa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meaculpa/v3/AMOTz4GcuWbEIuza8jsZms0QW3mqyg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meddon\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meddon/v20/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MedievalSharp\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/medievalsharp/v24/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Medula One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meera Inimai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meerainimai/v12/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Megrim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/megrim/v16/46kulbz5WjvLqJZlbWXgd0RY1g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meie Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Meow Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meowscript/v5/0FlQVPqanlaJrtr8AnJ0ESch0_0CfDf1.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merienda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/merienda/v14/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merienda/v14/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merienda One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/meriendaone/v16/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merriweather\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/merriweather/v30/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/merriweather/v30/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Merriweather Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZ_O4ljuEG7xFHnQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4ljuEG7xFHnQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZkO4ljuEG7xFHnQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZfOkljuEG7xFHnQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZRekljuEG7xFHnQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZIukljuEG7xFHnQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq2TzesCzRRXnaur.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3NzesCzRRXnaur.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq3_zesCzRRXnaur.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0TyusCzRRXnaur.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq0qyusCzRRXnaur.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/merriweathersans/v22/2-cM9IRs1JiJN1FRAMjTN5zd9vgsFHXwWDvLBsPDdpWMaq1NyusCzRRXnaur.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metal\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metal/v28/lW-wwjUJIXTo7i3nnoQAUdN2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metal Mania\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metamorphous\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metamorphous/v18/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Metrophobic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/metrophobic/v19/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Michroma\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/michroma/v16/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Milonga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/milonga/v20/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miltonian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miltonian/v26/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miltonian Tattoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miltoniantattoo/v28/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mina\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mina/v11/-nFzOGc18vARrz9j7i3y65o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mina/v11/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mingzat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"lepcha\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mingzat/v1/0QIgMX5C-o-oWWyvBttkm_mv670.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miniver\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miniver/v21/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miriam Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/miriamlibre/v13/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mirza\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mirza/v15/co3ImWlikiN5EurdKMewsrvI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIpAeO4mafBomDi.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtIFBuO4mafBomDi.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mirza/v15/co3FmWlikiN5EtJhB-O4mafBomDi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Miss Fajardose\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mitr\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mitr/v11/pxiLypw5ucZFyTsyMJj_b1o.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mitr/v11/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mochiy Pop One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypopone/v7/QdVPSTA9Jh-gg-5XZP2UmU4O9kwwD3s6ZKAi.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mochiy Pop P One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mochiypoppone/v7/Ktk2AKuPeY_td1-h9LayHYWCjAqyN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Modak\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/modak/v18/EJRYQgs1XtIEsnMH8BVZ76KU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Modern Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/modernantiqua/v22/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mogra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mogra/v19/f0X40eSs8c95TBo4DvLmxtnG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mohave\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdif_HvCQopLSvBk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdnn_HvCQopLSvBk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdkv_HvCQopLSvBk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdqf4HvCQopLSvBk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mohave/v8/7cH0v4ksjJunKqMVAOPIMOeSmiojdp74HvCQopLSvBk.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8qLOaprDXrBlSVw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G89rOaprDXrBlSVw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8xLOaprDXrBlSVw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8KLSaprDXrBlSVw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mohave/v8/7cH2v4ksjJunKqM_CdE36I75AIQkY7G8EbSaprDXrBlSVw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Molengo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Molle\",\r\n      \"variants\": [\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"italic\": \"http://fonts.gstatic.com/s/molle/v21/E21n_dL5hOXFhWEsXzgmVydREus.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monda/v16/TK3tWkYFABsmjvpmNBsLvPdG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/monda/v16/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monofett\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monofett/v22/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monoton\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monoton/v15/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Monsieur La Doulaise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/monsieurladoulaise/v14/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montaga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montagu Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbE3P9Fs7bOSO7.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkBbEnP9Fs7bOSO7.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkCFEnP9Fs7bOSO7.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDbEnP9Fs7bOSO7.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkDpEnP9Fs7bOSO7.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkAFFXP9Fs7bOSO7.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montaguslab/v6/6qLhKZIQtB_zv0xUaXRDWkY_HXsphdLRZF40vm_jzR2jhk_n3T6ACkA8FXP9Fs7bOSO7.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MonteCarlo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montecarlo/v7/buEzpo6-f9X01GadLA0G0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montez\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montez/v18/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Uw-Y3tcoqK5.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew-Y3tcoqK5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew-Y3tcoqK5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew-Y3tcoqK5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew-Y3tcoqK5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w-Y3tcoqK5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w-Y3tcoqK5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w-Y3tcoqK5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvC70w-Y3tcoqK5.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R8aX9-p7K5ILg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR9aX9-p7K5ILg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq_p9aX9-p7K5ILg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq6R9aX9-p7K5ILg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq5Z9aX9-p7K5ILg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aX9-p7K5ILg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq0N6aX9-p7K5ILg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqyR6aX9-p7K5ILg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/montserrat/v25/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jqw16aX9-p7K5ILg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat Alternates\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/montserratalternates/v17/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Montserrat Subrayada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/montserratsubrayada/v17/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moo Lah Lah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moolahlah/v3/dg4h_p_opKZOA0w1AYcm55wtYQYugjW4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moon Dance\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moondance/v3/WBLgrEbUbFlYW9ekmGawe2XiKMiokE4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moul\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moul/v25/nuF2D__FSo_3E-RYiJCy-00.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Moulpali\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-04-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/moulpali/v28/H4ckBXKMl9HagUWymyY6wr-wg763.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mountains of Christmas\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mountainsofchristmas/v20/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mouse Memoirs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mousememoirs/v13/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr Bedfort\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrbedfort/v21/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr Dafoe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mr De Haviland\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mrs Saint Delafield\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mrs Sheppards\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mrssheppards/v21/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ms Madi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/msmadi/v2/HTxsL2UxNnOji5E1N-DPiI7QAYo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mukta/v13/iJWKBXyXfDDVXYnGp32S0H3f.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mukta/v13/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Mahee\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktamahee/v15/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Malar\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktamalar/v12/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mukta Vaani\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/muktavaani/v13/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/muktavaani/v13/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mulish\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNRwaClGrw-PTY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexc1RwaClGrw-PTY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexZNRwaClGrw-PTY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexaFRwaClGrw-PTY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexU1WwaClGrw-PTY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexXRWwaClGrw-PTY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexRNWwaClGrw-PTY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptyg83HX_SGhgqO0yLcmjzUAuWexTpWwaClGrw-PTY.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeOvHp47LTZFwA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSd-OvHp47LTZFwA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSKeOvHp47LTZFwA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSG-OvHp47LTZFwA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsS9-SvHp47LTZFwA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSzuSvHp47LTZFwA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSqeSvHp47LTZFwA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/mulish/v12/1Ptwg83HX_SGhgqk2hAjQlW_mEuZ0FsSgOSvHp47LTZFwA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Murecho\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5HWZLCpUOaM6.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr5XWZLCpUOaM6.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMo15XWZLCpUOaM6.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpr5XWZLCpUOaM6.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMpZ5XWZLCpUOaM6.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMq14nWZLCpUOaM6.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMqM4nWZLCpUOaM6.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrr4nWZLCpUOaM6.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/murecho/v6/q5uYsoq3NOBn_I-ggCJg98TBOoNFCMrC4nWZLCpUOaM6.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"MuseoModerno\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa4QicCgGdrS3g.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0a8QicCgGdrS3g.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HD68QicCgGdrS3g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HUa8QicCgGdrS3g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HY68QicCgGdrS3g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54Hj6gQicCgGdrS3g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54HtqgQicCgGdrS3g.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H0agQicCgGdrS3g.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/museomoderno/v22/zrfx0HnU0_7wWdMrFcWqSEXlXhPlgPcSP5dZJ54H-KgQicCgGdrS3g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"My Soul\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mysoul/v2/3XFqErcuy945_u6KF_Ulk2nnXf0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Mystery Quest\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"NTR\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ntr/v15/RLpzK5Xy0ZjiGGhs5TA4bg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nabla\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"math\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nabla/v6/j8_D6-LI0Lvpe7Makz5UhJt9C3uqg_X_75gyGS4jAxsNIjrRNRBUFFR_198.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Brush Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumbrushscript/v22/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Gothic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nanumgothic/v21/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Gothic Coding\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanumgothiccoding/v19/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Myeongjo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nanummyeongjo/v20/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nanum Pen Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nanumpenscript/v19/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neonderthaw\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/neonderthaw/v3/Iure6Yx5-oWVZI0r-17AeZZJprVA4XQ0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nerko One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nerkoone/v15/m8JQjfZSc7OXlB3ZMOjzcJ5BZmqa3A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neucha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bvugNsCxVEgA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Neuton\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/neuton/v18/UMBTrPtMoH62xUZyyII7civlBw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/neuton/v18/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/neuton/v18/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"New Rocker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"New Tegomin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newtegomin/v10/SLXMc1fV7Gd9USdBAfPlqfN0Q3ptkDMN.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"News Cycle\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/newscycle/v22/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Newsreader\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-I_ADOxEPjCggA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wJo_ADOxEPjCggA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438weI_ADOxEPjCggA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wSo_ADOxEPjCggA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wpojADOxEPjCggA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438wn4jADOxEPjCggA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9qfjOCX1hbuyalUrK49dLac06G1ZGsZBtoBCzBDXXD9JVF438w-IjADOxEPjCggA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoT-ZAHDWwgECi.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMx2T-ZAHDWwgECi.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwoT-ZAHDWwgECi.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMwaT-ZAHDWwgECi.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMz2SOZAHDWwgECi.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMzPSOZAHDWwgECi.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/newsreader/v19/cY9kfjOCX1hbuyalUrK439vogqC9yFZCYg7oRZaLP4obnf7fTXglsMyoSOZAHDWwgECi.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Niconne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Niramit\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/niramit/v10/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/niramit/v10/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/niramit/v10/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nixie One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nobile\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nobile/v17/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nobile/v17/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nobile/v17/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nokora\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/nokora/v30/~CgoKBk5va29yYRhkIAAqBAgBGAE=.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRisAiAAKgQIARgB.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nokora/v30/~CggKBk5va29yYSAAKgQIARgB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRi8BSAAKgQIARgB.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nokora/v30/~CgsKBk5va29yYRiEByAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Norican\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/norican/v14/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nosifer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nosifer/v20/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Notable\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notable/v14/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nothing You Could Do\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nothingyoucoulddo/v15/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noticia Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/noticiatext/v15/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Color Emoji\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"emoji\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-26\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notocoloremoji/v24/Yq6P-KqIXTD0t4D9z1ESnKM3-HpFab5s79iz64w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Emoji\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"emoji\"\r\n      ],\r\n      \"version\": \"v34\",\r\n      \"lastModified\": \"2022-09-26\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob_10jwvS-FGJCMY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-r0jwvS-FGJCMY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob-Z0jwvS-FGJCMY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob911TwvS-FGJCMY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoemoji/v34/bMrnmSyK7YY-MEu6aWjPDs-ar6uWaGWuob9M1TwvS-FGJCMY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Kufi Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v3obPnLSmf5yD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v34bPnLSmf5yD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh4x34bPnLSmf5yD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5v34bPnLSmf5yD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh5d34bPnLSmf5yD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6x2IbPnLSmf5yD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh6I2IbPnLSmf5yD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7v2IbPnLSmf5yD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notokufiarabic/v15/CSRp4ydQnPyaDxEXLFF6LZVLKrodhu8t57o1kDc5Wh7G2IbPnLSmf5yD.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Music\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"music\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notomusic/v14/pe0rMIiSN5pO63htf1sxIteQB9Zra1U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Naskh Arabic\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwvc5krK0z9_Mnuw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwj85krK0z9_Mnuw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwY8lkrK0z9_Mnuw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notonaskharabic/v18/RrQ5bpV-9Dd1b1OAGA6M9PkyDuVBePeKNaxcsss0Y7bwWslkrK0z9_Mnuw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Nastaliq Urdu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qt_-DK2f2-_8mEw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qu3-DK2f2-_8mEw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3QgH5DK2f2-_8mEw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notonastaliqurdu/v14/LhWNMUPbN-oZdNFcBy1-DJYsEoTq5pudQ9L940pGPkB3Qjj5DK2f2-_8mEw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Rashi Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-DkRyq6Nf2pfA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-HkRyq6Nf2pfA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZWeHkRyq6Nf2pfA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZB-HkRyq6Nf2pfA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZNeHkRyq6Nf2pfA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ2ebkRyq6Nf2pfA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZ4ObkRyq6Nf2pfA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZh-bkRyq6Nf2pfA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notorashihebrew/v21/EJR_Qh82XsIK-QFmqXk4zvLwFVya0vFL-HlKM5e6C6HZrubkRyq6Nf2pfA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"devanagari\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNjhjRFSfiM7HBj.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0MIpQlx3QUlC5A4PNr4AwhQ_yu6WBjJLE.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjKhVlY9aA5Wl6PQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyNYtyEx2xqPaif.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjThZlY9aA5Wl6PQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzpYdyEx2xqPaif.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosans/v27/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjFhdlY9aA5Wl6PQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AyxYNyEx2xqPaif.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjOhBlY9aA5Wl6PQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AydZ9yEx2xqPaif.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjQhJlY9aA5Wl6PQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzlZdyEx2xqPaif.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosans/v27/o-0NIpQlx3QUlC5A4PNjZhNlY9aA5Wl6PQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notosans/v27/o-0TIpQlx3QUlC5A4PNr4AzBZNyEx2xqPaif.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Adlam\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"adlam\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufnv0TGnBZLwhuvk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufkn0TGnBZLwhuvk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufqXzTGnBZLwhuvk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlam/v21/neIczCCpqp0s5pPusPamd81eMfjPonvqdbYxxpgufpzzTGnBZLwhuvk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Adlam Unjoined\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"adlam\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Ye35PMEe-E3slUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_Yd_5PMEe-E3slUg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YTP-PMEe-E3slUg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansadlamunjoined/v21/P5sszY2MYsLRsB5_ildkzPPDsLQXcOEmaFOqOGcaYrzFTIjsPam_YQr-PMEe-E3slUg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Anatolian Hieroglyphs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"anatolian-hieroglyphs\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansanatolianhieroglyphs/v14/ijw9s4roRME5LLRxjsRb8A0gKPSWq4BbDmHHu6j2pEtUJzZWXybIymc5QYo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Arabic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyG2vu3CBFQLaig.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGyvu3CBFQLaig.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCflmyvu3CBFQLaig.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfyGyvu3CBFQLaig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCf-myvu3CBFQLaig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfFmuvu3CBFQLaig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfL2uvu3CBFQLaig.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfSGuvu3CBFQLaig.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansarabic/v18/nwpxtLGrOAZMl5nJ_wfgRg3DrWFZWsnVBJ_sS6tlqHHFlhQ5l3sQWIHPqzCfYWuvu3CBFQLaig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Armenian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"armenian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v39\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxbq0iYy6zF3Eg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxb60iYy6zF3Eg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoqvb60iYy6zF3Eg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorxb60iYy6zF3Eg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLorDb60iYy6zF3Eg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLoovaK0iYy6zF3Eg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLooWaK0iYy6zF3Eg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopxaK0iYy6zF3Eg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansarmenian/v39/ZgN0jOZKPa7CHqq0h37c7ReDUubm2SEdFXp7ig73qtTY5idb74R9UdM3y2nZLopYaK0iYy6zF3Eg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Avestan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"avestan\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansavestan/v17/bWti7ejKfBziStx7lIzKOLQZKhIJkyu9SASLji8U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Balinese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"balinese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov7fdhE5Vd222PPY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov4XdhE5Vd222PPY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov2nahE5Vd222PPY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbalinese/v18/NaPwcYvSBuhTirw6IaFn6UrRDaqje-lpbbRtYf-Fwu2Ov1DahE5Vd222PPY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bamum\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bamum\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEddO-_gLykxEkxA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEeVO-_gLykxEkxA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPEQlJ-_gLykxEkxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbamum/v18/uk-0EGK3o6EruUbnwovcbBTkkklK_Ya_PBHfNGTPETBJ-_gLykxEkxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bassa Vah\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bassa-vah\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbassavah/v15/PN_sRee-r3f7LnqsD5sax12gjZn7mBpL_4c2VNUQptE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Batak\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"batak\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbatak/v16/gok2H6TwAEdtF9N8-mdTCQvT-Zdgo4_PHuk74A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bengali\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolKudCk8izI0lc.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglLudCk8izI0lc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmstdLudCk8izI0lc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsolLudCk8izI0lc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsrtLudCk8izI0lc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsldMudCk8izI0lc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6Kmsm5MudCk8izI0lc.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsglMudCk8izI0lc.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansbengali/v20/Cn-SJsCGWQxOjaGwMQ6fIiMywrNJIky6nvd8BjzVMvJx2mcSPVFpVEqE-6KmsiBMudCk8izI0lc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Bhaiksuki\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bhaiksuki\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbhaiksuki/v15/UcC63EosKniBH4iELXATsSBWdvUHXxhj8rLUdU4wh9U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Brahmi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"brahmi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbrahmi/v15/vEFK2-VODB8RrNDvZSUmQQIIByV18tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Buginese\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"buginese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuginese/v15/esDM30ldNv-KYGGJpKGk18phe_7Da6_gtfuEXLmNtw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Buhid\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"buhid\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansbuhid/v17/Dxxy8jiXMW75w3OmoDXVWJD7YwzAe6tgnaFoGA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Canadian Aboriginal\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"canadian-aboriginal\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLj_yAsg0q0uhQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2Ln_yAsg0q0uhQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigBrn_yAsg0q0uhQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigWLn_yAsg0q0uhQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigarn_yAsg0q0uhQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzighr7_yAsg0q0uhQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzigv77_yAsg0q0uhQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig2L7_yAsg0q0uhQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscanadianaboriginal/v21/4C_TLjTuEqPj-8J01CwaGkiZ9os0iGVkezM1mUT-j_Lmlzda6uH_nnX1bzig8b7_yAsg0q0uhQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Carian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"carian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscarian/v15/LDIpaoiONgYwA9Yc6f0gUILeMIOgs7ob9yGLmfI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Caucasian Albanian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"caucasian-albanian\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscaucasianalbanian/v16/nKKA-HM_FYFRJvXzVXaANsU0VzsAc46QGOkWytlTs-TXrYDmoVmRSZo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Chakma\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chakma\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanschakma/v15/Y4GQYbJ8VTEp4t3MKJSMjg5OIzhi4JjTQhYBeYo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cham\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cham\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcER0cv7GykboaLg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRwcv7GykboaLg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcTxwcv7GykboaLg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcERwcv7GykboaLg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcIxwcv7GykboaLg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfczxscv7GykboaLg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfc9hscv7GykboaLg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfckRscv7GykboaLg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscham/v23/pe06MIySN5pO62Z5YkFyQb_bbuRhe6D4yip43qfcuBscv7GykboaLg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cherokee\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cherokee\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5ODkm5rAffjl0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5PDkm5rAffjl0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWnBPDkm5rAffjl0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWi5PDkm5rAffjl0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWhxPDkm5rAffjl0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWvBIDkm5rAffjl0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWslIDkm5rAffjl0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWq5IDkm5rAffjl0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanscherokee/v19/KFOPCm6Yu8uF-29fiz9vQF9YWK6Z8O10cHNA0cSkZCHYWodIDkm5rAffjl0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Coptic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"coptic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscoptic/v17/iJWfBWmUZi_OHPqn4wq6kgqumOEd78u_VG0xR4Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cuneiform\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cuneiform\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscuneiform/v15/bMrrmTWK7YY-MF22aHGGd7H8PhJtvBDWgb9JlRQueeQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Cypriot\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cypriot\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanscypriot/v15/8AtzGta9PYqQDjyp79a6f8Cj-3a3cxIsK5MPpahF.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Deseret\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"deseret\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdeseret/v15/MwQsbgPp1eKH6QsAVuFb9AZM6MMr2Vq9ZnJSZtQG.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQky-AzoFoW4Ow.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQly-AzoFoW4Ow.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlSoly-AzoFoW4Ow.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlXQly-AzoFoW4Ow.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlUYly-AzoFoW4Ow.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Alaoiy-AzoFoW4Ow.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlZMiy-AzoFoW4Ow.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08AlfQiy-AzoFoW4Ow.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansdevanagari/v19/TuGoUUFzXI5FBtUq5a8bjKYTZjtRU6Sgv3NaV_SNmI0b8QQCQmHn6B2OHjbL_08Ald0iy-AzoFoW4Ow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cLVTGQ2iHrvWM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cKVTGQ2iHrvWM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_ykKVTGQ2iHrvWM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_3cKVTGQ2iHrvWM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_0UKVTGQ2iHrvWM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_6kNVTGQ2iHrvWM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_5ANVTGQ2iHrvWM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp__cNVTGQ2iHrvWM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpbK4fy6r6tOBEJg0IAKzqdFZVZxpMkXJMhnB9XjO1o90LuV-PT4Doq_AKp_94NVTGQ2iHrvWM.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXOa3gPurWM9uQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXKa3gPurWM9uQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9J43Ka3gPurWM9uQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JvXKa3gPurWM9uQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9Jj3Ka3gPurWM9uQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JY3Wa3gPurWM9uQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JWnWa3gPurWM9uQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JPXWa3gPurWM9uQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notosansdisplay/v20/RLpZK4fy6r6tOBEJg0IAKzqdFZVZxrktbnDB5UzBIup9PwAcHtEsOFNBZqyu6r9JFHWa3gPurWM9uQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Duployan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"duployan\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansduployan/v16/gokzH7nwAEdtF9N8-mdTDx_X9JM5wsvrFsIn6WYDvA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Egyptian Hieroglyphs\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"egyptian-hieroglyphs\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansegyptianhieroglyphs/v26/vEF42-tODB8RrNDvZSUmRhcQHzx1s7y_F9-j3qSzEcbEYindSVK8xRg7iw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Elbasan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"elbasan\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselbasan/v15/-F6rfiZqLzI2JPCgQBnw400qp1trvHdlre4dFcFh.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Elymaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"elymaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanselymaic/v15/UqyKK9YTJW5liNMhTMqe9vUFP65ZD4AjWOT0zi2V.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ethiopic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v38\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OKqDjwmfeaY9u.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OK6DjwmfeaY9u.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T34QK6DjwmfeaY9u.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T35OK6DjwmfeaY9u.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T358K6DjwmfeaY9u.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36QLKDjwmfeaY9u.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T36pLKDjwmfeaY9u.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37OLKDjwmfeaY9u.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansethiopic/v38/7cHPv50vjIepfJVOZZgcpQ5B9FBTH9KGNfhSTgtoow1KVnIvyBoMSzUMacb-T37nLKDjwmfeaY9u.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Georgian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"georgian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v36\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzVj-f5WK0OQV.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptnzFj-f5WK0OQV.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpu5zFj-f5WK0OQV.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvnzFj-f5WK0OQV.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpvVzFj-f5WK0OQV.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdps5y1j-f5WK0OQV.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdpsAy1j-f5WK0OQV.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptny1j-f5WK0OQV.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgeorgian/v36/PlIaFke5O6RzLfvNNVSitxkr76PRHBC4Ytyq-Gof7PUs4S7zWn-8YDB09HFNdptOy1j-f5WK0OQV.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Glagolitic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"glagolitic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansglagolitic/v15/1q2ZY4-BBFBst88SU_tOj4J-4yuNF_HI4ERK4Amu7nM1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gothic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgothic/v15/TuGKUUVzXI5FBtUq5a8bj6wRbzxTFMX40kFQRx0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Grantha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"grantha\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgrantha/v17/3y976akwcCjmsU8NDyrKo3IQfQ4o-r8cFeulHc6N.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFgPM_OdiEH0s.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpFwPM_OdiEH0s.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_z3FwPM_OdiEH0s.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ypFwPM_OdiEH0s.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_ybFwPM_OdiEH0s.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_x3EAPM_OdiEH0s.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_xOEAPM_OdiEH0s.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wpEAPM_OdiEH0s.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgujarati/v19/wlpWgx_HC1ti5ViekvcxnhMlCVo3f5pv17ivlzsUB14gg1TMR2Gw4VceEl7MA_wAEAPM_OdiEH0s.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gunjala Gondi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gunjala-gondi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgunjalagondi/v15/bWto7e7KfBziStx7lIzKPrcSMwcEnCv6DW7n5hcVXYMTK4q1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1Oe3bxZ_trdp7h.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OenbxZ_trdp7h.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG0QenbxZ_trdp7h.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG1OenbxZ_trdp7h.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG18enbxZ_trdp7h.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2QfXbxZ_trdp7h.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG2pfXbxZ_trdp7h.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3OfXbxZ_trdp7h.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansgurmukhi/v20/w8g9H3EvQP81sInb43inmyN9zZ7hb7ATbSWo4q8dJ74a3cVrYFQ_bogT0-gPeG3nfXbxZ_trdp7h.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans HK\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-hongkong\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanshk/v21/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hanifi Rohingya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hanifi-rohingya\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYY4j6vvcudK8rN.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIYq4j6vvcudK8rN.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIbG5T6vvcudK8rN.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshanifirohingya/v18/5h17iYsoOmIC3Yu3MDXLDw3UZCgghyOEBBY7hhLNyo3tiaiuSIAqrIb_5T6vvcudK8rN.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hanunoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hanunoo\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshanunoo/v15/f0Xs0fCv8dxkDWlZSoXOj6CphMloFsEsEpgL_ix2.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hatran\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hatran\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshatran/v15/A2BBn4Ne0RgnVF3Lnko-0sOBIfL_mM83r1nwzDs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v38\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4utoiJltutR2g.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX94qtoiJltutR2g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXKYqtoiJltutR2g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXd4qtoiJltutR2g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXRYqtoiJltutR2g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXqY2toiJltutR2g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiXkI2toiJltutR2g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX942toiJltutR2g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanshebrew/v38/or3HQ7v33eiDljA1IufXTtVf7V6RvEEdhQlk0LlGxCyaeNKYZC0sqk3xXGiX3o2toiJltutR2g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Imperial Aramaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"imperial-aramaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansimperialaramaic/v15/a8IMNpjwKmHXpgXbMIsbTc_kvks91LlLetBr5itQrtdml3YfPNno.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Indic Siyaq Numbers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"indic-siyaq-numbers\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansindicsiyaqnumbers/v15/6xK5dTJFKcWIu4bpRBjRZRpsIYHabOeZ8UZLubTzpXNHKx2WPOpVd5Iu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Inscriptional Pahlavi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"inscriptional-pahlavi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalpahlavi/v15/ll8UK3GaVDuxR-TEqFPIbsR79Xxz9WEKbwsjpz7VklYlC7FCVtqVOAYK0QA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Inscriptional Parthian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"inscriptional-parthian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansinscriptionalparthian/v15/k3k7o-IMPvpLmixcA63oYi-yStDkgXuXncL7dzfW3P4TAJ2yklBJ2jNkLlLr.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans JP\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v42\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansjp/v42/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Javanese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"javanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxJnkFFliZYWj4O8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxKvkFFliZYWj4O8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxEfjFFliZYWj4O8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansjavanese/v19/2V01KJkDAIA6Hp4zoSScDjV0Y-eoHAHT-Z3MngEefiidxH7jFFliZYWj4O8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans KR\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskr/v27/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskr/v27/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kaithi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kaithi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskaithi/v15/buEtppS9f8_vkXadMBJJu0tWjLwjQi0KdoZIKlo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvMzSIMLsPKrkY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvNzSIMLsPKrkY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrGXNzSIMLsPKrkY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrDvNzSIMLsPKrkY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrAnNzSIMLsPKrkY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrOXKzSIMLsPKrkY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrNzKzSIMLsPKrkY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrLvKzSIMLsPKrkY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskannada/v21/8vIs7xs32H97qzQKnzfeXycxXZyUmySvZWItmf1fe6TVmgop9ndpS-BqHEyGrJLKzSIMLsPKrkY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kayah Li\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kayah-li\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WCc3CZH4EXLuKVM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WBU3CZH4EXLuKVM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WPkwCZH4EXLuKVM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskayahli/v18/B50nF61OpWTRcGrhOVJJwOMXdca6Yecki3E06x2jVTX3WMAwCZH4EXLuKVM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Kharoshthi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kharoshthi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskharoshthi/v15/Fh4qPiLjKS30-P4-pGMMXCCfvkc5Vd7KE5z4rFyx5mR1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khmer\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAZz4kAbrddiA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNAJz4kAbrddiA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYvTAJz4kAbrddiA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYuNAJz4kAbrddiA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYu_AJz4kAbrddiA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtTB5z4kAbrddiA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYtqB5z4kAbrddiA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYsNB5z4kAbrddiA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanskhmer/v18/ijw3s5roRME5LLRxjsRb-gssOenAyendxrgV2c-Zw-9vbVUti_Z_dWgtWYskB5z4kAbrddiA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khojki\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khojki\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhojki/v15/-nFnOHM29Oofr2wohFbTuPPKVWpmK_d709jy92k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Khudawadi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khudawadi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanskhudawadi/v15/fdNi9t6ZsWBZ2k5ltHN73zZ5hc8HANlHIjRnVVXz9MY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lao\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lao\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccfdf5MK3riB2w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cbdf5MK3riB2w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4L8bdf5MK3riB2w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4ccbdf5MK3riB2w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4Q8bdf5MK3riB2w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4r8Hdf5MK3riB2w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt4lsHdf5MK3riB2w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt48cHdf5MK3riB2w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanslao/v24/bx6lNx2Ol_ixgdYWLm9BwxM3NW6BOkuf763Clj73CiQ_J1Djx9pidOt42MHdf5MK3riB2w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lepcha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lepcha\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslepcha/v15/0QI7MWlB_JWgA166SKhu05TekNS32AJstqBXgd4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Limbu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"limbu\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslimbu/v17/3JnlSDv90Gmq2mrzckOBBRRoNJVj0MF3OHRDnA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Linear A\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"linear-a\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslineara/v16/oPWS_l16kP4jCuhpgEGmwJOiA18FZj22zmHQAGQicw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Linear B\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"linear-b\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslinearb/v15/HhyJU4wt9vSgfHoORYOiXOckKNB737IV3BkFTq4EPw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lisu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"lisu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP2Vwt29IlxkVdig.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHP61wt29IlxkVdig.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPB1st29IlxkVdig.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanslisu/v21/uk-3EGO3o6EruUbnwovcYhz6kh57_nqbcTdjJnHPPlst29IlxkVdig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lycian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lycian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslycian/v15/QldVNSNMqAsHtsJ7UmqxBQA9r8wA5_naCJwn00E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Lydian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lydian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanslydian/v15/c4m71mVzGN7s8FmIukZJ1v4ZlcPReUPXMoIjEQI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mahajani\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mahajani\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmahajani/v15/-F6sfiVqLzI2JPCgQBnw60Agp0JrvD5Fh8ARHNh4zg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuH9BFzEr6HxEA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuD9BFzEr6HxEA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_GOD9BFzEr6HxEA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_RuD9BFzEr6HxEA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_dOD9BFzEr6HxEA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_mOf9BFzEr6HxEA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_oef9BFzEr6HxEA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_xuf9BFzEr6HxEA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmalayalam/v21/sJoi3K5XjsSdcnzn071rL37lpAOsUThnDZIfPdbeSNzVakglNM-Qw8EaeB8Nss-_7-f9BFzEr6HxEA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mandaic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mandaic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmandaic/v15/cIfnMbdWt1w_HgCcilqhKQBo_OsMI5_A_gMk0izH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Manichaean\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"manichaean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmanichaean/v15/taiVGntiC4--qtsfi4Jp9-_GkPZZCcrfekqCNTtFCtdX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Marchen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"marchen\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmarchen/v15/aFTO7OZ_Y282EP-WyG6QTOX_C8WZMHhPk652ZaHk.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Masaram Gondi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"masaram-gondi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmasaramgondi/v15/6xK_dThFKcWIu4bpRBjRYRV7KZCbUq6n_1kPnuGe7RI9WSWX.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Math\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"math\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmath/v15/7Aump_cpkSecTWaHRlH2hyV5UHkG-V048PW0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mayan Numerals\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mayan-numerals\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmayannumerals/v15/PlIuFk25O6RzLfvNNVSivR09_KqYMwvvDKYjfIiE68oo6eepYQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Medefaidrin\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"medefaidrin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-06-01\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmErWlT318e5A3rw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmHjWlT318e5A3rw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmJTRlT318e5A3rw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmedefaidrin/v19/WwkzxOq6Dk-wranENynkfeVsNbRZtbOIdLb1exeM4ZeuabBfmK3RlT318e5A3rw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Meetei Mayek\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"meetei-mayek\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ__TW5PgeFYVa.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ_vTW5PgeFYVa.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1SX_vTW5PgeFYVa.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1TJ_vTW5PgeFYVa.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1T7_vTW5PgeFYVa.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1QX-fTW5PgeFYVa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Qu-fTW5PgeFYVa.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1RJ-fTW5PgeFYVa.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmeeteimayek/v14/HTxAL3QyKieByqY9eZPFweO0be7M21uSphSdhqILnmrRfJ8t_1Rg-fTW5PgeFYVa.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Meroitic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"meroitic\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmeroitic/v16/IFS5HfRJndhE3P4b5jnZ3ITPvC6i00UDgDhTiKY9KQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Miao\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"miao\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmiao/v17/Dxxz8jmXMW75w3OmoDXVV4zyZUjgUYVslLhx.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Modi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"modi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmodi/v15/pe03MIySN5pO62Z5YkFyT7jeav5qWVAgVol-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mongolian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mongolian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmongolian/v15/VdGCAYADGIwE0EopZx8xQfHlgEAMsrToxLsg6-av1x0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNI49rXVEQQL8Y.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNJ49rXVEQQL8Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_A1J49rXVEQQL8Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_FNJ49rXVEQQL8Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_GFJ49rXVEQQL8Y.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_I1O49rXVEQQL8Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_LRO49rXVEQQL8Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_NNO49rXVEQQL8Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmono/v21/BngrUXNETWXI6LwhGYvaxZikqZqK6fBq6kPvUce2oAZcdthSBUsYck4-_PpO49rXVEQQL8Y.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Mro\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"mro\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmro/v15/qWcsB6--pZv9TqnUQMhe9b39WDzRtjkho4M.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Multani\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"multani\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmultani/v15/9Bty3ClF38_RfOpe1gCaZ8p30BOFO1A0pfCs5Kos.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Myanmar\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZs_y1ZtY3ymOryg38hOCSdOnFq0HGS1uEapkAC3AY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HE-98EwiEwLxR-r.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFa9MEwiEwLxR-r.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZq_y1ZtY3ymOryg38hOCSdOnFq0En23OU4o1AC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEC9cEwiEwLxR-r.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HEu8sEwiEwLxR-r.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFK88EwiEwLxR-r.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFW8MEwiEwLxR-r.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansmyanmar/v20/AlZv_y1ZtY3ymOryg38hOCSdOnFq0HFy8cEwiEwLxR-r.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans N Ko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nko\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnko/v17/6NUP8FqDKBaKKjnr6P8v-sxPpvVBVNmme3gf.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Nabataean\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nabataean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnabataean/v15/IFS4HfVJndhE3P4b5jnZ34DfsjO330dNoBJ9hK8kMK4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans New Tai Lue\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"new-tai-lue\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewtailue/v15/H4c5BW-Pl9DZ0Xe_nHUapt7PovLXAhAnY7wwY55O4AS32A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Newa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"newa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnewa/v15/7r3fqXp6utEsO9pI4f8ok8sWg8n_qN4R5lNU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Nushu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nushu\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansnushu/v18/rnCw-xRQ3B7652emAbAe_Ai1IYaFWFAMArZKqQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ogham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ogham\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansogham/v15/kmKlZqk1GBDGN0mY6k5lmEmww4hrt5laQxcoCA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ol Chiki\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ol-chiki\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALWk267I6gVrz5gQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALVs267I6gVrz5gQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALbcx67I6gVrz5gQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansolchiki/v17/N0b92TJNOPt-eHmFZCdQbrL32r-4CvhzDzRwlxOQYuVALY4x67I6gVrz5gQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Hungarian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-hungarian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldhungarian/v15/E213_cD6hP3GwCJPEUssHEM0KqLaHJXg2PiIgRfjbg5nCYXt.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Italic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-italic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansolditalic/v15/TuGOUUFzXI5FBtUq5a8bh68BJxxEVam7tWlRdRhtCC4d.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old North Arabian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-north-arabian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldnortharabian/v15/esDF30BdNv-KYGGJpKGk2tNiMt7Jar6olZDyNdr81zBQmUo_xw4ABw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Permic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-permic\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpermic/v16/snf1s1q1-dF8pli1TesqcbUY4Mr-ElrwKLdXgv_dKYB5.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Persian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-persian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldpersian/v15/wEOjEAbNnc5caQTFG18FHrZr9Bp6-8CmIJ_tqOlQfx9CjA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Sogdian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-sogdian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsogdian/v15/3JnjSCH90Gmq2mrzckOBBhFhdrMst48aURt7neIqM-9uyg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old South Arabian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-south-arabian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldsoutharabian/v15/3qT5oiOhnSyU8TNFIdhZTice3hB_HWKsEnF--0XCHiKx1OtDT9HwTA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Old Turkic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"old-turkic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoldturkic/v15/yMJNMJVya43H0SUF_WmcGEQVqoEMKDKbsE2RjEw-Vyws.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Oriya\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"oriya\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0fq_c6LhHBRe-.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0f6_c6LhHBRe-.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Iviqf6_c6LhHBRe-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivj0f6_c6LhHBRe-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvjGf6_c6LhHBRe-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgqeK_c6LhHBRe-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvgTeK_c6LhHBRe-.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5Ivh0eK_c6LhHBRe-.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansoriya/v19/AYCppXfzfccDCstK_hrjDyADv5e9748vhj3CJBLHIARtgD6TJQS0dJT5IvhdeK_c6LhHBRe-.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Osage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"osage\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosage/v15/oPWX_kB6kP4jCuhpgEGmw4mtAVtXRlaSxkrMCQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Osmanya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"osmanya\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansosmanya/v15/8vIS7xs32H97qzQKnzfeWzUyUpOJmz6kR47NCV5Z.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Pahawh Hmong\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"pahawh-hmong\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspahawhhmong/v15/bWtp7e_KfBziStx7lIzKKaMUOBEA3UPQDW7krzc_c48aMpM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Palmyrene\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"palmyrene\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspalmyrene/v15/ZgNPjOdKPa7CHqq0h37c_ASCWvH93SFCPnK5ZpdNtcA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Pau Cin Hau\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"pau-cin-hau\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspaucinhau/v16/x3d-cl3IZKmUqiMg_9wBLLtzl22EayN7ehIdjEWqKMxsKw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Phags Pa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"phags-pa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphagspa/v15/pxiZyoo6v8ZYyWh5WuPeJzMkd4SrGChkqkSsrvNXiA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Phoenician\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"phoenician\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansphoenician/v15/jizFRF9Ksm4Bt9PvcTaEkIHiTVtxmFtS5X7Jot-p5561.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Psalter Pahlavi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"psalter-pahlavi\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanspsalterpahlavi/v15/rP2Vp3K65FkAtHfwd-eISGznYihzggmsicPfud3w1G3KsUQBct4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Rejang\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"rejang\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrejang/v15/Ktk2AKuMeZjqPnXgyqrib7DIogqwN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Runic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"runic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansrunic/v15/H4c_BXWPl9DZ0Xe_nHUaus7W68WWaxpvHtgIYg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans SC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssc/v26/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Samaritan\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"samaritan\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssamaritan/v15/buEqppe9f8_vkXadMBJJo0tSmaYjFkxOUo5jNlOVMzQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Saurashtra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"saurashtra\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssaurashtra/v15/ea8GacQ0Wfz_XKWXe6OtoA8w8zvmYwTef9ndjhPTSIx9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sharada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sharada\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssharada/v15/gok0H7rwAEdtF9N8-mdTGALG6p0kwoXLPOwr4H8a.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Shavian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"shavian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansshavian/v15/CHy5V_HZE0jxJBQlqAeCKjJvQBNF4EFQSplv2Cwg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Siddham\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"siddham\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssiddham/v15/OZpZg-FwqiNLe9PELUikxTWDoCCeGqndk3Ic92ZH.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sinhala\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2b5lgLpJwbQRM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2a5lgLpJwbQRM.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwlOa5lgLpJwbQRM.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwg2a5lgLpJwbQRM.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwj-a5lgLpJwbQRM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwtOd5lgLpJwbQRM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwuqd5lgLpJwbQRM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwo2d5lgLpJwbQRM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssinhala/v26/yMJ2MJBya43H0SUF_WmcBEEf4rQVO2P524V5N_MxQzQtb-tf5dJbC30Fu9zUwqSd5lgLpJwbQRM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sogdian\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sogdian\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssogdian/v15/taiQGn5iC4--qtsfi4Jp6eHPnfxQBo--Pm6KHidM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sora Sompeng\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sora-sompeng\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHR818DpZXJQd4Mu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHRO18DpZXJQd4Mu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSi0MDpZXJQd4Mu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssorasompeng/v17/PlIRFkO5O6RzLfvNNVSioxM2_OTrEhPyDLolKvCsHzCxWuGkYHSb0MDpZXJQd4Mu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Soyombo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"soyombo\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssoyombo/v15/RWmSoL-Y6-8q5LTtXs6MF6q7xsxgY0FrIFOcK25W.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Sundanese\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"sundanese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxpNNHCizv7fQES.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctxbNNHCizv7fQES.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6cty3M9HCizv7fQES.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssundanese/v17/FwZw7_84xUkosG2xJo2gm7nFwSLQkdymq2mkz3Gz1_b6ctyOM9HCizv7fQES.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Syloti Nagri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"syloti-nagri\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssylotinagri/v15/uU9eCAQZ75uhfF9UoWDRiY3q7Sf_VFV3m4dGFVfxN87gsj0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Symbols\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"symbols\"\r\n      ],\r\n      \"version\": \"v36\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ4gavVFRkzrbQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_Q8gavVFRkzrbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gIw8gavVFRkzrbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gfQ8gavVFRkzrbQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gTw8gavVFRkzrbQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gowggavVFRkzrbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3gmgggavVFRkzrbQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g_QggavVFRkzrbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssymbols/v36/rP2up3q65FkAtHfwd-eIS2brbDN6gxP34F9jRRCe4W3g1AggavVFRkzrbQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Symbols 2\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"symbols\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssymbols2/v15/I_uyMoGduATTei9eI8daxVHDyfisHr71ypPqfX71-AI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Syriac\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"regular\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"syriac\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkwAKuMeZjqPnXgyqribqzQqgW0D-e9XaRE7sX5Cg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/Ktk2AKuMeZjqPnXgyqribqzQqgW0N4O3WYZB_sU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanssyriac/v15/KtkxAKuMeZjqPnXgyqribqzQqgW0DweafY5q4szgE-Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans TC\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-traditional\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstc/v26/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tagalog\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tagalog\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagalog/v15/J7aFnoNzCnFcV9ZI-sUYuvote1R0wwEAA8jHexnL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tagbanwa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tagbanwa\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstagbanwa/v15/Y4GWYbB8VTEp4t3MKJSMmQdIKjRtt_nZRjQEaYpGoQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Le\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-le\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaile/v15/vEFK2-VODB8RrNDvZSUmVxEATwR58tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Tham\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-tham\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBCUbPgquyaRGKMw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBBcbPgquyaRGKMw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBPscPgquyaRGKMw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstaitham/v17/kJEbBv0U4hgtwxDUw2x9q7tbjLIfbPGHBoaVSAZ3MdLJBMIcPgquyaRGKMw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tai Viet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tai-viet\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstaiviet/v15/8QIUdj3HhN_lv4jf9vsE-9GMOLsaSPZr644fWsRO9w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Takri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"takri\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstakri/v15/TuGJUVpzXI5FBtUq5a8bnKIOdTwQNO_W3khJXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGor0RqKDt_EvT.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGo70RqKDt_EvT.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7uYo70RqKDt_EvT.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7vGo70RqKDt_EvT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7v0o70RqKDt_EvT.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7sYpL0RqKDt_EvT.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7shpL0RqKDt_EvT.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tGpL0RqKDt_EvT.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstamil/v21/ieVc2YdFI3GCY6SyQy1KfStzYKZgzN1z4LKDbeZce-0429tBManUktuex7tvpL0RqKDt_EvT.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tamil Supplement\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tamil-supplement\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstamilsupplement/v19/DdTz78kEtnooLS5rXF1DaruiCd_bFp_Ph4sGcn7ax_vsAeMkeq1x.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezfqQUbf-3v37w.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zbqQUbf-3v37w.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntJTbqQUbf-3v37w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntezbqQUbf-3v37w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntSTbqQUbf-3v37w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntpTHqQUbf-3v37w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEntnDHqQUbf-3v37w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt-zHqQUbf-3v37w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosanstelugu/v19/0FlxVOGZlE2Rrtr-HmgkMWJNjJ5_RyT8o8c7fHkeg-esVC5dzHkHIJQqrEnt0jHqQUbf-3v37w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thaana\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"thaana\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbxLhnu4-tbNu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VrbhLhnu4-tbNu.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4W1bhLhnu4-tbNu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XrbhLhnu4-tbNu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4XZbhLhnu4-tbNu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4U1aRLhnu4-tbNu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4UMaRLhnu4-tbNu.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VraRLhnu4-tbNu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthaana/v16/C8c14dM-vnz-s-3jaEsxlxHkBH-WZOETXfoQrfQ9Y4VCaRLhnu4-tbNu.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RspzF-QRvzzXg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRtpzF-QRvzzXg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU8ptpzF-QRvzzXg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU5RtpzF-QRvzzXg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU6ZtpzF-QRvzzXg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU0pqpzF-QRvzzXg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdU3NqpzF-QRvzzXg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUxRqpzF-QRvzzXg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthai/v20/iJWnBXeUZi_OHPqn4wq6hQ2_hbJ1xyN9wd43SofNWcd1MKVQt_So_9CdUz1qpzF-QRvzzXg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Thai Looped\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50fF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3YX6AYeCT_Wfd1.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y84E4UgrzUO5sKA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yl4I4UgrzUO5sKA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50RF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3gO6ocWiHvWQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yz4M4UgrzUO5sKA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Y44Q4UgrzUO5sKA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yh4U4UgrzUO5sKA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Ym4Y4UgrzUO5sKA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notosansthailooped/v12/B50cF6pOpWTRcGrhOVJJ3-oPfY7WQuFu5R3Yv4c4UgrzUO5sKA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tifinagh\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tifinagh\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstifinagh/v15/I_uzMoCduATTei9eI8dawkHIwvmhCvbn6rnEcXfs4Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Tirhuta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tirhuta\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanstirhuta/v15/t5t6IQYRNJ6TWjahPR6X-M-apUyby7uGUBsTrn5P.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Ugaritic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ugaritic\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansugaritic/v15/3qTwoiqhnSyU8TNFIdhZVCwbjCpkAXXkMhoIkiazfg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Vai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vai\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansvai/v17/NaPecZTSBuhTirw6IaFn_UrURMTsDIRSfr0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Wancho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"wancho\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswancho/v17/zrf-0GXXyfn6Fs0lH9P4cUubP0GBqAPopiRfKp8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Warang Citi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"warang-citi\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanswarangciti/v17/EYqtmb9SzL1YtsZSScyKDXIeOv3w-zgsNvKRpeVCCXzdgA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Yi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"yi\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosansyi/v16/sJoD3LFXjsSdcnzn071rO3apxVDJNVgSNg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Sans Zanabazar Square\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"zanabazar-square\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notosanszanabazarsquare/v15/Cn-jJsuGWQxOjaGwMQ6fOicyxLBEMRfDtkzl4uagQtJxOCEgN0Gc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserif/v21/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Ahom\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ahom\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifahom/v17/FeVIS0hfp6cprmEUffAW_fUL_AN-wuYrPFiwaw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Armenian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"armenian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8ObxvXagGdkbg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8KbxvXagGdkbg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZ1cKbxvXagGdkbg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZi8KbxvXagGdkbg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZucKbxvXagGdkbg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZVcWbxvXagGdkbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZbMWbxvXagGdkbg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZC8WbxvXagGdkbg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifarmenian/v23/3XFMEqMt3YoFsciDRZxptyCUKJmytZ0kVU-XvF7QaZuL85rnQ_zDNzDe5xNnKxyZIsWbxvXagGdkbg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Balinese\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"balinese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbalinese/v16/QdVKSS0-JginysQSRvuCmUMB_wVeQAxXRbgJdhapcUU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Bengali\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAH3qn4LjQH8yD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAHnqn4LjQH8yD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfdeHnqn4LjQH8yD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcAHnqn4LjQH8yD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfcyHnqn4LjQH8yD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffeGXqn4LjQH8yD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JffnGXqn4LjQH8yD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfeAGXqn4LjQH8yD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifbengali/v19/hYkuPvggTvnzO14VSXltirUdnnkt1pwmWrprmO7RjE0a5BtdATYU1crFaM_5JfepGXqn4LjQH8yD.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Devanagari\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-og-HMUe1u_dv.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-ow-HMUe1u_dv.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTBgow-HMUe1u_dv.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTA-ow-HMUe1u_dv.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTAMow-HMUe1u_dv.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDgpA-HMUe1u_dv.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTDZpA-HMUe1u_dv.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTC-pA-HMUe1u_dv.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdevanagari/v21/x3dYcl3IZKmUqiMk48ZHXJ5jwU-DZGRSaQ4Hh2dGyFzPLcQPVbnRNeFsw0xRWb6uxTCXpA-HMUe1u_dv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Display\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd49gKaDU9hvzC.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd4tgKaDU9hvzC.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVoD4tgKaDU9hvzC.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpd4tgKaDU9hvzC.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVpv4tgKaDU9hvzC.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVqD5dgKaDU9hvzC.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVq65dgKaDU9hvzC.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVrd5dgKaDU9hvzC.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buERppa9f8_vkXaZLAgP0G5Wi6QmA1QaeYah2sovLCDq_ZgLyt3idQfktOG-PVr05dgKaDU9hvzC.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBIYjEfg-zCmf4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBJYjEfg-zCmf4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoW5JYjEfg-zCmf4.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoTBJYjEfg-zCmf4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoQJJYjEfg-zCmf4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-Voe5OYjEfg-zCmf4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoddOYjEfg-zCmf4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VobBOYjEfg-zCmf4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notoserifdisplay/v17/buEPppa9f8_vkXaZLAgP0G5Wi6QmA1QwcLRCOrN8uo7t6FBJOJTQit-N33sQOk-VoZlOYjEfg-zCmf4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Dogra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"dogra\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifdogra/v15/MQpP-XquKMC7ROPP3QOOlm7xPu3fGy63IbPzkns.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Ethiopic\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"ethiopic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSQjkaO9UVLyiw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSUjkaO9UVLyiw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCkyUjkaO9UVLyiw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCzSUjkaO9UVLyiw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxC_yUjkaO9UVLyiw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCEyIjkaO9UVLyiw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCKiIjkaO9UVLyiw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCTSIjkaO9UVLyiw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifethiopic/v18/V8mjoR7-XjwJ8_Au3Ti5tXj5Rd83frpWLK4d-taxqWw2HMWjDxBAg5S_0QsrggxCZCIjkaO9UVLyiw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Georgian\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"georgian\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvsfdzTw-FgZxQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzvofdzTw-FgZxQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSEPofdzTw-FgZxQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSTvofdzTw-FgZxQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSfPofdzTw-FgZxQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSkP0fdzTw-FgZxQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSqf0fdzTw-FgZxQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aSzv0fdzTw-FgZxQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgeorgian/v18/VEMXRpd8s4nv8hG_qOzL7HOAw4nt0Sl_XxyaEduNMvi7T6Y4etRnmGhyLop-R3aS5_0fdzTw-FgZxQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Grantha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"grantha\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgrantha/v19/qkBIXuEH5NzDDvc3fLDYxPk9-Wq3WLiqFENLR7fHGw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Gujarati\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycYzuM1Kf-OJu.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuaycIzuM1Kf-OJu.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuZscIzuM1Kf-OJu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYycIzuM1Kf-OJu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HuYAcIzuM1Kf-OJu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Hubsd4zuM1Kf-OJu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2HubVd4zuM1Kf-OJu.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huayd4zuM1Kf-OJu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgujarati/v21/hESa6WBlOixO-3OJ1FTmTsmqlBRUJBVkcgNLpdsspzP2Huabd4zuM1Kf-OJu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Gurmukhi\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eBTNmqVU7y6l.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-eRTNmqVU7y6l.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr7geRTNmqVU7y6l.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6-eRTNmqVU7y6l.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr6MeRTNmqVU7y6l.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5gfhTNmqVU7y6l.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr5ZfhTNmqVU7y6l.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4-fhTNmqVU7y6l.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifgurmukhi/v14/92z-tA9LNqsg7tCYlXdCV1VPnAEeDU0vLoYMbylXk0xTCr4XfhTNmqVU7y6l.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif HK\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-hongkong\",\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-K2RmV9Su1M6i.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMcgK2RmV9Su1M6i.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMd-K2RmV9Su1M6i.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMdMK2RmV9Su1M6i.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMegLGRmV9Su1M6i.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMeZLGRmV9Su1M6i.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMf-LGRmV9Su1M6i.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhk/v2/BngdUXBETWXI6LwlBZGcqL-B_KuJFcgfwP_9RMfXLGRmV9Su1M6i.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Hebrew\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwTAG8_vlQxz24.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwSAG8_vlQxz24.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVFISAG8_vlQxz24.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVAwSAG8_vlQxz24.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVD4SAG8_vlQxz24.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVNIVAG8_vlQxz24.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVOsVAG8_vlQxz24.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVIwVAG8_vlQxz24.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifhebrew/v20/k3k0o9MMPvpLmixYH7euCwmkS9DohjX1-kRyiqyBqIxnoLbp93i9IKrXKF_qVKUVAG8_vlQxz24.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif JP\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifjp/v21/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif KR\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkr/v20/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Kannada\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYCceRJ71svgcI.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYDceRJ71svgcI.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgZgDceRJ71svgcI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgcYDceRJ71svgcI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgfQDceRJ71svgcI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgRgEceRJ71svgcI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgSEEceRJ71svgcI.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgUYEceRJ71svgcI.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkannada/v21/v6-8GZHLJFKIhClqUYqXDiWqpxQxWSPoW6bz-l4hGHiNgW8EceRJ71svgcI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Khmer\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B4wXEZK9Xo4xg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaB8wXEZK9Xo4xg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNth8wXEZK9Xo4xg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN6B8wXEZK9Xo4xg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdN2h8wXEZK9Xo4xg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNNhgwXEZK9Xo4xg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNDxgwXEZK9Xo4xg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNaBgwXEZK9Xo4xg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifkhmer/v18/-F6UfidqLzI2JPCkXAO2hmogq0146FxtbwKEr951z5s6lI40sDRH_AVhUKdNQRgwXEZK9Xo4xg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Lao\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"lao\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMLrvOjlmyhHHQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMKrvOjlmyhHHQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8Vb0KrvOjlmyhHHQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VeMKrvOjlmyhHHQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VdEKrvOjlmyhHHQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VT0NrvOjlmyhHHQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VQQNrvOjlmyhHHQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VWMNrvOjlmyhHHQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriflao/v18/3y9C6bYwcCjmsU8JEzCMxEwQfEBLk3f0rlSqCdaM_LlSNZ59oNw0BWH8VUoNrvOjlmyhHHQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Malayalam\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"malayalam\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-1fnVwHpQVySg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-xfnVwHpQVySg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL16exfnVwHpQVySg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1t-xfnVwHpQVySg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1hexfnVwHpQVySg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1aetfnVwHpQVySg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1UOtfnVwHpQVySg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1N-tfnVwHpQVySg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmalayalam/v20/JIAZUU5sdmdP_HMcVcZFcH7DeVBeGVgSMEk2cmVDq1ihUXL1HutfnVwHpQVySg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Myanmar\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJudM7F2Yv76aBKKs-bHMQfAHUw3jnNwBDsU9X6RPzQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNbDHMefv2TeXJng.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNCDLMefv2TeXJng.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJsdM7F2Yv76aBKKs-bHMQfAHUw3jn1pBrocdDqRA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNUDPMefv2TeXJng.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNfDTMefv2TeXJng.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNGDXMefv2TeXJng.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNBDbMefv2TeXJng.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifmyanmar/v13/VuJvdM7F2Yv76aBKKs-bHMQfAHUw3jnNIDfMefv2TeXJng.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Nyiakeng Puachue Hmong\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nyiakeng-puachue-hmong\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKhqPDFvbZkrZmb0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKiiPDFvbZkrZmb0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKsSIDFvbZkrZmb0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifnyiakengpuachuehmong/v16/5h1jibMoOmIC3YuzLC-NZyLDZC8iwh-MTC8ggAjEhePFNRVcneAFp44kcYMUkNqVKv2IDFvbZkrZmb0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif SC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsc/v22/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Sinhala\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxRlMsxaLRn3W-.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExR1MsxaLRn3W-.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pHvR1MsxaLRn3W-.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGxR1MsxaLRn3W-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pGDR1MsxaLRn3W-.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFvQFMsxaLRn3W-.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pFWQFMsxaLRn3W-.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pExQFMsxaLRn3W-.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifsinhala/v18/DtVEJwinQqclnZE2CnsPug9lgGC3y2F2nehQ7Eg4EdBKWxPiDxMivFLgRXs_-pEYQFMsxaLRn3W-.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif TC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-traditional\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftc/v23/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tamil\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN6R8Pz3v8Etew.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNN-R8Pz3v8Etew.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecat6t-R8Pz3v8Etew.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecattN-R8Pz3v8Etew.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatht-R8Pz3v8Etew.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatatiR8Pz3v8Etew.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatU9iR8Pz3v8Etew.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatNNiR8Pz3v8Etew.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjndHr-klIgTfc40komjQ5OObazYp-6H94dBF-RX6nNRJfi-Gf55IgAecatHdiR8Pz3v8Etew.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5svbzncQ9e3wx.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5s_bzncQ9e3wx.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJwns_bzncQ9e3wx.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJx5s_bzncQ9e3wx.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJxLs_bzncQ9e3wx.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyntPbzncQ9e3wx.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJyetPbzncQ9e3wx.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJz5tPbzncQ9e3wx.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/notoseriftamil/v21/LYjldHr-klIgTfc40komjQ5OObazSJaI_D5kV8k_WLwFBmWrypghjeOa18G4fJzQtPbzncQ9e3wx.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tangut\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tangut\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftangut/v15/xn76YGc72GKoTvER4Gn3b4m9Ern7Em41fcvN2KT4.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Telugu\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TGwuY2fjgrZYA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTCwuY2fjgrZYA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DqzCwuY2fjgrZYA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9D9TCwuY2fjgrZYA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DxzCwuY2fjgrZYA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DKzewuY2fjgrZYA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DEjewuY2fjgrZYA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DdTewuY2fjgrZYA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftelugu/v20/tDbl2pCbnkEKmXNVmt2M1q6f4HWbbj6MRbYEeav7Fe9DXDewuY2fjgrZYA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Thai\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiFuRRCmsdu0Qx.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiF-RRCmsdu0Qx.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0p8F-RRCmsdu0Qx.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oiF-RRCmsdu0Qx.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0oQF-RRCmsdu0Qx.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0r8EORRCmsdu0Qx.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0rFEORRCmsdu0Qx.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qiEORRCmsdu0Qx.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoserifthai/v19/k3kyo80MPvpLmixYH7euCxWpSMu3-gcWGj0hHAKGvUQlUv_bCKDUSzB5L0qLEORRCmsdu0Qx.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Tibetan\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYdPS7rdSy_32c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYcPS7rdSy_32c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIugcPS7rdSy_32c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIrYcPS7rdSy_32c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIoQcPS7rdSy_32c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmImgbPS7rdSy_32c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIlEbPS7rdSy_32c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIjYbPS7rdSy_32c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/notoseriftibetan/v16/gokGH7nwAEdtF9N45n0Vaz7O-pk0wsvxHeDXMfqguoCmIh8bPS7rdSy_32c.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Serif Yezidi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"yezidi\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-07-19\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD2yEkrlGJgmVCqg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspD6SEkrlGJgmVCqg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDBSYkrlGJgmVCqg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/notoserifyezidi/v16/XLYPIYr5bJNDGYxLBibeHZAn3B5KJENnQjbfhMSVZspDPCYkrlGJgmVCqg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Noto Traditional Nushu\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"nushu\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nototraditionalnushu/v16/SZco3EDkJ7q9FaoMPlmF4Su8hlIjoGh5aj67J011GNh6SYA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Cut\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novacut/v24/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Flat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaflat/v24/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novamono/v18/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Oval\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaoval/v24/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Round\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaround/v21/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novascript/v25/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Slim\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novaslim/v24/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nova Square\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/novasquare/v20/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Numans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nunito\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDshRTM9jo7eTWk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDOUhRTM9jo7eTWk.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshRTM9jo7eTWk.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDIkhRTM9jo7eTWk.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDGUmRTM9jo7eTWk.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDFwmRTM9jo7eTWk.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDDsmRTM9jo7eTWk.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nunito/v25/XRXI3I6Li01BKofiOc5wtlZ2di8HDBImRTM9jo7eTWk.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXA3iqzbXWnoeg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNi83A3iqzbXWnoeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNirXA3iqzbXWnoeg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNin3A3iqzbXWnoeg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNic3c3iqzbXWnoeg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiSnc3iqzbXWnoeg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiLXc3iqzbXWnoeg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/nunito/v25/XRXK3I6Li01BKofIMPyPbj8d7IEAGXNiBHc3iqzbXWnoeg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nunito Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/nunitosans/v12/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Nuosu SIL\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"yi\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/nuosusil/v2/8vIK7wM3wmRn_kc4uAjeFGxbO_zo-w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Odibee Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/odibeesans/v14/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Odor Mean Chey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/odormeanchey/v27/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Offside\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/offside/v20/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oi/v15/w8gXH2EuRqtaut6yjBOG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Old Standard TT\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oldstandardtt/v18/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oldenburg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oldenburg/v20/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ole\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ole/v3/dFazZf6Z-rd89fw69qJ_ew.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oleo Script\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oleoscript/v14/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oleo Script Swash Caps\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oooh Baby\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ooohbaby/v3/2sDcZGJWgJTT2Jf76xQDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Open Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v34\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0C4nY1M2xLER.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0C4nY1M2xLER.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjr0C4nY1M2xLER.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1y4nY1M2xLER.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1y4nY1M2xLER.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/opensans/v34/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1y4nY1M2xLER.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk5hkaVcUwaERZjA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk8ZkaVcUwaERZjA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk_RkaVcUwaERZjA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkxhjaVcUwaERZjA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0RkyFjaVcUwaERZjA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/opensans/v34/memQYaGs126MiZpBA-UFUIcVXSCEkx2cmqvXlWq8tWZ0Pw86hd0Rk0ZjaVcUwaERZjA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oranienbaum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orbitron\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/orbitron/v25/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oregano\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oregano/v13/If2IXTPxciS3H4S2kZffPznO3yM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/oregano/v13/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orelega One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orelegaone/v10/3qTpojOggD2XtAdFb-QXZGt61EcYaQ7F.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Orienta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/orienta/v13/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Original Surfer\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/originalsurfer/v18/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oswald\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v49\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oswald/v49/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Outfit\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC0C4G-EiAou6Y.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bC1C4G-EiAou6Y.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4W61C4G-EiAou6Y.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4TC1C4G-EiAou6Y.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4QK1C4G-EiAou6Y.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4e6yC4G-EiAou6Y.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4deyC4G-EiAou6Y.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4bCyC4G-EiAou6Y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/outfit/v6/QGYyz_MVcBeNP4NjuGObqx1XmO1I4ZmyC4G-EiAou6Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Over the Rainbow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overtherainbow/v16/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overlock\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/overlock/v15/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overlock SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/overlocksc/v21/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overpass\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PLrOZCLtce-og.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPPrOZCLtce-og.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6ovPrOZCLtce-og.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6_PPrOZCLtce-og.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6zvPrOZCLtce-og.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6IvTrOZCLtce-og.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6G_TrOZCLtce-og.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6fPTrOZCLtce-og.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/overpass/v12/qFda35WCmI96Ajtm83upeyoaX6QPnlo6VfTrOZCLtce-og.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADe5qPl8Kuosgz.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDepqPl8Kuosgz.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLBdepqPl8Kuosgz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLADepqPl8Kuosgz.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLAxepqPl8Kuosgz.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDdfZqPl8Kuosgz.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLDkfZqPl8Kuosgz.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCDfZqPl8Kuosgz.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/overpass/v12/qFdU35WCmI96Ajtm81GgSdXCNs-VMF0vNLCqfZqPl8Kuosgz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Overpass Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EWKokzzXur-SmIr.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXUokzzXur-SmIr.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EXmokzzXur-SmIr.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUKpUzzXur-SmIr.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/overpassmono/v15/_Xm5-H86tzKDdAPa-KPQZ-AC_COcRycquHlL6EUzpUzzXur-SmIr.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ovo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ovo/v17/yYLl0h7Wyfzjy4Q5_3WVxA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxanium\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JfniMBXQ7d67x.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G80XfniMBXQ7d67x.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G81JfniMBXQ7d67x.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G817fniMBXQ7d67x.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82XeXiMBXQ7d67x.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G82ueXiMBXQ7d67x.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/oxanium/v14/RrQPboN_4yJ0JmiMUW7sIGjd1IA9G83JeXiMBXQ7d67x.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxygen\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/oxygen/v15/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Oxygen Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/oxygenmono/v13/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79P0WOxOGMMDQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsans/v17/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ptsans/v17/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans Caption\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsanscaption/v18/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Sans Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptsansnarrow/v17/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Serif\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ptserif/v17/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"PT Serif Caption\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ptserifcaption/v17/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pacifico\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Padauk\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"myanmar\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-28\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/padauk/v15/RrQRboJg-id7OnbBa0_g3LlYbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/padauk/v15/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Palanquin\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/palanquin/v13/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Palanquin Dark\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/palanquindark/v12/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pangolin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pangolin/v11/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Paprika\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/paprika/v21/8QIJdijZitv49rDfuIgOq7jkAOw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Parisienne\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passero One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-05-10\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passeroone/v24/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passion One\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passionone/v16/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/passionone/v16/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Passions Conflict\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/passionsconflict/v5/kmKnZrcrFhfafnWX9x0GuEC-zowow5NeYRI4CN2V.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pathway Gothic One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pathwaygothicone/v14/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patrick Hand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhand/v19/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patrick Hand SC\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patrickhandsc/v13/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pattaya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pattaya/v12/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Patua One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/patuaone/v16/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pavanam\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pavanam/v11/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Paytone One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/paytoneone/v18/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Peddana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/peddana/v20/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Peralta\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/peralta/v17/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Permanent Marker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petemoss\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/petemoss/v5/A2BZn5tA2xgtGWHZgxkesKb9UouQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petit Formal Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/petitformalscript/v13/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Petrona\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsARBH452Mvds.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NsQRBH452Mvds.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk7TsQRBH452Mvds.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsQRBH452Mvds.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6_sQRBH452Mvds.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5TtgRBH452Mvds.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk5qtgRBH452Mvds.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4NtgRBH452Mvds.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/petrona/v28/mtGl4_NXL7bZo9XXq35wRLONYyOjFk4ktgRBH452Mvds.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwDFYpUN-dsIWs.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwCFYpUN-dsIWs.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8rICFYpUN-dsIWs.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8uwCFYpUN-dsIWs.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8t4CFYpUN-dsIWs.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8jIFFYpUN-dsIWs.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8gsFFYpUN-dsIWs.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8mwFFYpUN-dsIWs.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/petrona/v28/mtGr4_NXL7bZo9XXgXdCu2vkCLkNEVtF8kUFFYpUN-dsIWs.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Philosopher\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/philosopher/v19/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Piazzolla\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYx3Ly1AHfAAy5.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYxnLy1AHfAAy5.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7KGxnLy1AHfAAy5.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LYxnLy1AHfAAy5.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7LqxnLy1AHfAAy5.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7IGwXLy1AHfAAy5.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7I_wXLy1AHfAAy5.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JYwXLy1AHfAAy5.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b52SlTPu5rIkWIZjVKKtYtfxYqZ4RJBFzFfYUjkSDdlqZgy7JxwXLy1AHfAAy5.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqw3gX9BRy5m5M.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRqx3gX9BRy5m5M.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhcSx3gX9BRy5m5M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhZqx3gX9BRy5m5M.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhaix3gX9BRy5m5M.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhUS23gX9BRy5m5M.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhX223gX9BRy5m5M.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhRq23gX9BRy5m5M.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/piazzolla/v25/N0b72SlTPu5rIkWIZjVgI-TckS03oGpPETyEJ88Rbvi0_TzOzKcQhTO23gX9BRy5m5M.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Piedra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/piedra/v21/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pinyon Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pinyonscript/v17/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pirata One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Plaster\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Play\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/play/v17/6aez4K2oVqwIjtI8Hp8Tx3A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/play/v17/6ae84K2oVqwItm4TOpc423nTJTM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playball\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playball/v16/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playfair Display\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplay/v30/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Playfair Display SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/playfairdisplaysc/v15/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Plus Jakarta Sans\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KU7NShXUEKi4Rw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_907NShXUEKi4Rw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NShXUEKi4Rw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NShXUEKi4Rw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNShXUEKi4Rw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNShXUEKi4Rw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNShXUEKi4Rw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lCR_QMq2oR82k.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ17CR_QMq2oR82k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0lCR_QMq2oR82k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_QMq2oR82k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ37Dh_QMq2oR82k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_QMq2oR82k.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/plusjakartasans/v3/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_QMq2oR82k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Podkova\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v26\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/podkova/v26/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poiret One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poiretone/v14/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poller One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pollerone/v19/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poly\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poly/v16/MQpb-W6wKNitRLCAq2Lpris.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/poly/v16/MQpV-W6wKNitdLKKr0DsviuGWA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pompiere\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pompiere/v15/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pontano Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pontanosans/v13/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poor Story\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/poorstory/v20/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Poppins\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/poppins/v20/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/poppins/v20/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/poppins/v20/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Port Lligat Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatsans/v18/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Port Lligat Slab\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/portlligatslab/v21/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Potta One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pottaone/v16/FeVSS05Bp6cy7xI-YfxQ3Z5nm29Gww.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pragati Narrow\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/pragatinarrow/v13/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Praise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/praise/v5/qkBUXvUZ-cnFXcFyDvO67L9XmQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prata\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prata/v18/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Preahvihear\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/preahvihear/v27/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Press Start 2P\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/pressstart2p/v14/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Pridi\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/pridi/v11/2sDQZG5JnZLfkfWao2krbl29.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/pridi/v11/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Princess Sofia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/princesssofia/v21/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prociono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prociono/v22/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prompt\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/prompt/v10/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/prompt/v10/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/prompt/v10/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Prosto One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prostoone/v17/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Proza Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/prozalibre/v9/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Public Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/publicsans/v14/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Puppies Play\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/puppiesplay/v5/wlp2gwHZEV99rG6M3NR9uB9vaAJSA_JN3Q.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Puritan\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/puritan/v24/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/puritan/v24/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/puritan/v24/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Purple Purse\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/purplepurse/v21/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qahiri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qahiri/v7/tsssAp1RZy0C_hGuU3Chrnmupw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quando\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quando/v14/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quantico\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quantico/v15/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quantico/v15/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/quantico/v15/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quattrocento\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quattrocento/v17/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quattrocento Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/quattrocentosans/v18/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Questrial\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quicksand\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/quicksand/v30/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Quintessential\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/quintessential/v20/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qwigley\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qwigley/v16/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Qwitcher Grypen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxicypclp9tDilN9RrC5BSI1dZmrSGNAom-wpw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/qwitchergrypen/v3/pxiZypclp9tDilN9RrC5BSI1dZmT9ExkqkSsrvNXiA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Racing Sans One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/racingsansone/v13/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Radio Canada\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nESkQPIJOdSSfOT.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nFMkQPIJOdSSfOT.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nF-kQPIJOdSSfOT.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGSlgPIJOdSSfOT.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX13ISXn0dBMcibU6jlAqr3ejLv5OLZYiYXik6db2P4jxxlsls-0nGrlgPIJOdSSfOT.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0rWLLuNwTOOTa9k.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0uuLLuNwTOOTa9k.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0tmLLuNwTOOTa9k.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0jWMLuNwTOOTa9k.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/radiocanada/v16/XRX33ISXn0dBMcibU6jlAqrdcwAMBJuK9IgQn4bfnSrKcMQM2cGQ1WSE0gyMLuNwTOOTa9k.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Radley\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/radley/v20/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/radley/v20/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rajdhani\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rajdhani/v15/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rakkas\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rakkas/v17/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Raleway\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v28\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/raleway/v28/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/raleway/v28/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Raleway Dots\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ralewaydots/v14/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ramabhadra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ramabhadra/v15/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ramaraja\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ramaraja/v15/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rambla\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mr0I7IONthkwQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfps0ip98hx6mrEIbgKFN10wYKa.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rambla/v13/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rambla/v13/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rammetto One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rammettoone/v14/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rampart One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rampartone/v7/K2F1fZFGl_JSR1tAWNG9R6qgLS76ZHOM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ranchers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ranchers/v13/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rancho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rancho/v17/46kulbzmXjLaqZRlbWXgd0RY1g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ranga\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ranga/v17/C8ct4cYisGb28p6CLDwZwmGE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ranga/v17/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rasa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN4YJW41fcvN2KT4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJW41fcvN2KT4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN50JW41fcvN2KT4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6YIm41fcvN2KT4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rasa/v15/xn76YHIn1mWmVKl8ZtAM9NrJfN6hIm41fcvN2KT4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZth2d8_v3bT4Ycc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZoZ2d8_v3bT4Ycc.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZrR2d8_v3bT4Ycc.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZlhxd8_v3bT4Ycc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rasa/v15/xn78YHIn1mWmfqBOmQhln0Bne8uOZmFxd8_v3bT4Ycc.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rationale\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rationale/v24/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ravi Prakash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/raviprakash/v19/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Readex Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQzfm7w3bk38hTB8.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQwBm7w3bk38hTB8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxfm7w3bk38hTB8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQxtm7w3bk38hTB8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQyBnLw3bk38hTB8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/readexpro/v10/SLXYc1bJ7HE5YDoGPuzj_dh8na74KiwZQQy4nLw3bk38hTB8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Recursive\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v35\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadDck018vwxjDJCL.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCCk018vwxjDJCL.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadCwk018vwxjDJCL.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBclE18vwxjDJCL.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadBllE18vwxjDJCL.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadAClE18vwxjDJCL.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/recursive/v35/8vJN7wMr0mhh-RQChyHEH06TlXhq_gukbYrFMk1QuAIcyEwG_X-dpEfaE5YaERmK-CImKsvxvU-MXGX2fSqasNfUvz2xbXfn1uEQadArlE18vwxjDJCL.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Display\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbjKWckg5-Xecg3w.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbmyWckg5-Xecg3w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbl6Wckg5-Xecg3w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbrKRckg5-Xecg3w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbouRckg5-Xecg3w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbuyRckg5-Xecg3w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIf7wUr0m80wwYf0QCXZzYzUoTK8RZQvRd-D1NYbsWRckg5-Xecg3w.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVxAsz_VWZk3zJGg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVmgsz_VWZk3zJGg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVqAsz_VWZk3zJGg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVRAwz_VWZk3zJGg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVfQwz_VWZk3zJGg.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVGgwz_VWZk3zJGg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/redhatdisplay/v14/8vIh7wUr0m80wwYf0QCXZzYzUoTg-CSvZX4Vlf1fe6TVMwwz_VWZk3zJGg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQQPI-7HNuW4QuKI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQV3I-7HNuW4QuKI.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQW_I-7HNuW4QuKI.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQYPP-7HNuW4QuKI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVyY7nDnA2uf2zVvFAhhzEs-VMSjJpBTfgjwQbrP-7HNuW4QuKI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLTfLHvUwVqKIJuw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLE_LHvUwVqKIJuw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLIfLHvUwVqKIJuw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWLzfXHvUwVqKIJuw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhatmono/v10/jVye7nDnA2uf2zVvFAhhzEsUXfZc_vk45Kb3VJWL9PXHvUwVqKIJuw.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Hat Text\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML-ZwVrbacYVFtIY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML7hwVrbacYVFtIY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML4pwVrbacYVFtIY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML2Z3VrbacYVFtIY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQCbohi_ic6B3yVSzGBrMx6ZI_cy1A6Ok2ML193VrbacYVFtIY.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAz4PXQdadApIYv_g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzvvXQdadApIYv_g.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzjPXQdadApIYv_g.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzYPLQdadApIYv_g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/redhattext/v13/RrQEbohi_ic6B3yVSzGBrMxQbb0jEzlRoOOLOnAzWfLQdadApIYv_g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Red Rose\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8y8_sDcjSsYUVUjg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yrfsDcjSsYUVUjg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yn_sDcjSsYUVUjg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8yc_wDcjSsYUVUjg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redrose/v14/QdVISTYiLBjouPgEUajvsfWwDtc3MH8ySvwDcjSsYUVUjg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redacted\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/redacted/v6/Z9XVDmdRShme2O_7aITe4u2El6GC.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redacted Script\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqHUzVmbI397ldkg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvBbXGRglhokR7dcC3d1-R6zmxSsWTxkZkr_g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/redactedscript/v6/ypvEbXGRglhokR7dcC3d1-R6zmxqDUvVmbI397ldkg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Redressed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/redressed/v25/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnEGGf3qGuvM4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQttRnEGGf3qGuvM4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtjhgEGGf3qGuvM4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/reemkufi/v18/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtgFgEGGf3qGuvM4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi Fun\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYj3nCgrvqZzZXq.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChoYR3nCgrvqZzZXq.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChob92XCgrvqZzZXq.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/reemkufifun/v4/uK_m4rOFYukkmyUEbF43fIryZEk5qRZ8nrKChobE2XCgrvqZzZXq.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reem Kufi Ink\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-14\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reemkufiink/v4/oPWJ_kJmmu8hCvB9iFumxZSnRj5dQnSX1ko.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reenie Beanie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reeniebeanie/v16/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Reggae One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/reggaeone/v14/~CgwKClJlZ2dhZSBPbmUgACoECAEYAQ==.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Revalia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/revalia/v20/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rhodium Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rhodiumlibre/v17/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ribeye\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ribeye/v21/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ribeye Marrow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ribeyemarrow/v22/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Righteous\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/righteous/v13/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Risque\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/risque/v20/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Road Rage\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/roadrage/v5/6NUU8F2fKAOBKjjr4ekvtMYAwdRZfw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v30\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/roboto/v30/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Condensed\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v25\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotocondensed/v25/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Flex\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoflex/v9/NaN4epOXO_NexZs0b5QrzlOHb8wCikXpYqmZsWI-__OGfttPZktqc2VdZ80KvCLZaPcSBZtOx2MifRuWR28sPJtUMbsFEK6cRrleUx9Xgbm3WLHa_F4Ep4Fm0PN19Ik5Dntczx0wZGzhPlL1YNMYKbv9_1IQXOw7AiUJVXpRJ6cXW4O8TNGoXjC79QRyaLshNDUf3e0O-gn5rrZCu20YNYG0EACUTNK-QKavMlxGIY8dxef0jQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Mono\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotomono/v22/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Serif\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliosp6d2Af5fR4k.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqotp6d2Af5fR4k.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElnQtp6d2Af5fR4k.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEliotp6d2Af5fR4k.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElhgtp6d2Af5fR4k.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElvQqp6d2Af5fR4k.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEls0qp6d2Af5fR4k.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcElqoqp6d2Af5fR4k.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71RjywflP6FLr3gZx7K8UyuXDs9zVwDmXCb8lxYgmuii32UGoVldX6UgfjL4-3sMM_kB_qXSEXTJQCFLH5-_bcEloMqp6d2Af5fR4k.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-V8BdxaV4nUFw.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-R8BdxaV4nUFw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuEeR8BdxaV4nUFw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuT-R8BdxaV4nUFw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JufeR8BdxaV4nUFw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JukeN8BdxaV4nUFw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-JuqON8BdxaV4nUFw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Juz-N8BdxaV4nUFw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/robotoserif/v8/R71XjywflP6FLr3gZx7K8UyEVQnyR1E7VN-f51xYuGCQepOvB0KLc2v0wKKB0Q4MSZxyqf2CgAchbDJ69BcVZxkDg-Ju5uN8BdxaV4nUFw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Roboto Slab\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/robotoslab/v24/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rochester\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rochester/v18/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rock Salt\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rocksalt/v18/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"RocknRoll One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rocknrollone/v10/kmK7ZqspGAfCeUiW6FFlmEC9guVhs7tfUxc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rokkitt\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/rokkitt/v29/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Romanesco\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ropa Sans\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ropasans/v15/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rosario\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rosario/v27/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rosario/v27/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rosarivo\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rosarivo/v20/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rouge Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rougescript/v14/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rowdies\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219hth5O7yKQNute8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRJTieMYPNBAK21zrdJwObZNQo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rowdies/v15/ptRMTieMYPNBAK219gtm5O7yKQNute8.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rozha One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rozhaone/v13/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-WYi1UE80V4bVkA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4i1UE80V4bVkA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-NYi1UE80V4bVkA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1UE80V4bVkA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-4I-1UE80V4bVkA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-h4-1UE80V4bVkA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/rubik/v21/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-ro-1UE80V4bVkA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8sDE0UwdYPFkJ1O.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE0UwdYPFkJ1O.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tvE0UwdYPFkJ1O.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8uDFEUwdYPFkJ1O.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8u6FEUwdYPFkJ1O.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8vdFEUwdYPFkJ1O.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/rubik/v21/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8v0FEUwdYPFkJ1O.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Beastly\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbeastly/v10/0QImMXRd5oOmSC2ZQ7o9653X07z8_ApHqqk.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Bubbles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikbubbles/v2/JIA1UVdwbHFJtwA7Us1BPFbRNTENfDxyRXI.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Burned\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikburned/v1/Jqzk5TmOVOqQHihKqPpscqniHQuaCY5ZSg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Dirt\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdirt/v1/DtVmJxC7WLEj1uIXEWAdulwm6gDXvwE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Distressed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikdistressed/v1/GFDxWBdsmnqAVqjtUsZf2dcrQ2ldcWAhatVBaGM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Glitch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikglitch/v2/qkBSXv8b_srFRYQVYrDKh9ZvmC7HONiSFQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Iso\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikiso/v1/x3dickHUfr-S4VAI4sABfPACvy_1BA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Marker Hatch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmarkerhatch/v1/QldTNSFQsh0B_bFXXWv6LAt-jswapJHQDL4iw0H6zw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Maze\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmaze/v1/xMQRuF9ZVa2ftiJEavXSAX7inS-bxV4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Microbe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmicrobe/v2/UqyWK8oPP3hjw6ANS9rM3PsZcs8aaKgiauE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Mono One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmonoone/v14/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Moonrocks\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikmoonrocks/v2/845ANMAmAI2VUZMLu_W0M7HqlDHnXcD7JGy1Sw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Puddles\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikpuddles/v2/1Ptog8bYX_qGnkLkrU5MJsQcJfC0wVMT-aE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rubik Wet Paint\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rubikwetpaint/v2/HTx0L20uMDGHgdULcpTF3Oe4d_-F-zz313DuvQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruda\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/ruda/v23/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rufina\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6V-LyURyLy-aKyoxRktOdClg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/rufina/v13/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruge Boogie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rugeboogie/v24/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruluko\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rum Raisin\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rumraisin/v20/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruslan Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruslandisplay/v22/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Russo One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/russoone/v14/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ruthie\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ruthie/v24/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Rye\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/rye/v13/r05XGLJT86YDFpTsXOqx4w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"STIX Two Text\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yihg2SOYWxFMN1WD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YihS2SOYWxFMN1WD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5Yii-3iOYWxFMN1WD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Gr02F12Xkf5whdwKf11l0jbKkeidMTtZ5YiiH3iOYWxFMN1WD.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omsvbURVuMkWDmSo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omvnbURVuMkWDmSo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omhXcURVuMkWDmSo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/stixtwotext/v10/YA9Er02F12Xkf5whdwKf11l0p7uWhf8lJUzXZT2omizcURVuMkWDmSo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sacramento\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sacramento/v13/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sahitya\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sahitya/v17/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sail\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJFBTDADYAbvw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rDosg7lwYmUVY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rCosg7lwYmUVY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7wTCosg7lwYmUVY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA71rCosg7lwYmUVY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA72jCosg7lwYmUVY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA74TFosg7lwYmUVY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA773Fosg7lwYmUVY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA79rFosg7lwYmUVY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/saira/v14/memWYa2wxmKQyPMrZX79wwYZQMhsyuShhKMjjbU9uXuA7_PFosg7lwYmUVY.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSooxkyQjQVYmxA.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByosxkyQjQVYmxA.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBFIsxkyQjQVYmxA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBSosxkyQjQVYmxA.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBeIsxkyQjQVYmxA.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBlIwxkyQjQVYmxA.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKBrYwxkyQjQVYmxA.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKByowxkyQjQVYmxA.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/saira/v14/memUYa2wxmKQyNkiV50dulWP7s95AqZTzZHcVdxWI9WH-pKB44wxkyQjQVYmxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairacondensed/v11/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Extra Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairaextracondensed/v11/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Semi Condensed\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sairasemicondensed/v11/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Saira Stencil One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sairastencilone/v14/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Salsa\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/salsa/v17/gNMKW3FiRpKj-imY8ncKEZez.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sanchez\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sanchez/v13/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sancreek\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sancreek/v23/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sansita\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sansita/v10/QldONTRRphEb_-V7HBm7TXFf3qw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sansita/v10/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sansita/v10/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sansita Swashed\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW-ppbToVehmEa4Q.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW7RpbToVehmEa4Q.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW4ZpbToVehmEa4Q.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW2pubToVehmEa4Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSW1NubToVehmEa4Q.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWzRubToVehmEa4Q.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sansitaswashed/v17/BXR8vFfZifTZgFlDDLgNkBydPKTt3pVCeYWqJnZSWx1ubToVehmEa4Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarabun\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sarabun/v13/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarala\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarala/v10/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarala/v10/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarina\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarina/v21/-F6wfjF3ITQwasLhLkDUriBQxw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sarpanch\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sarpanch/v11/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sarpanch/v11/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sassy Frass\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sassyfrass/v5/LhWhMVrGOe0FLb97BjhsE99dGNWQg_am.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Satisfy\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/satisfy/v17/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sawarabi Gothic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabigothic/v12/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sawarabi Mincho\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scada/v14/RLpxK5Pv5qumeWJoxzUobkvv.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/scada/v14/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/scada/v14/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scheherazade New\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scheherazadenew/v12/4UaZrFhTvxVnHDvUkUiHg8jprP4DCwNsOl4p5Is.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/scheherazadenew/v12/4UaerFhTvxVnHDvUkUiHg8jprP4DM79DHlYC-IKnoSE.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Schoolbell\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Scope One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Seaweed Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/seaweedscript/v13/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Secular One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/secularone/v11/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sedgwick Ave\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickave/v12/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sedgwick Ave Display\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sedgwickavedisplay/v19/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sen/v7/6xKjdSxYI9_Hm_-MImrpLQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sen/v7/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Send Flowers\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sendflowers/v2/If2PXTjtZS-0Xqy13uCQSULvxwjjouU1iw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sevillana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sevillana/v21/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Seymour One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/seymourone/v20/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shadows Into Light\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolight/v15/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shadows Into Light Two\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shadowsintolighttwo/v13/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shalimar\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shalimar/v5/uU9MCBoE6I6iNWFUvTPx8PCOg0uX.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shanti\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shanti/v23/t5thIREMM4uSDgzgU0ezpKfwzA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/share/v16/i7dEIFliZjKNF5VNHLq2cV5d.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/share/v16/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/share/v16/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/share/v16/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share Tech\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sharetech/v17/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Share Tech Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Antique\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantique/v8/-F6qfid3KC8pdMyzR0qRyFUht11v8ldPg-IUDNg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Antique B1\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiantiqueb1/v8/2Eb7L_JwClR7Zl_UAKZ0mUHw3oMKd40grRFCj9-5Y8Y.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Mincho\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGGAZweH5EbgHY6YExcZfDoj0BA2_-C7LoS7g.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4L9am5JEO5--2zg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4A9Gm5JEO5--2zg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4Z9Cm5JEO5--2zg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/shipporimincho/v14/VdGDAZweH5EbgHY6YExcZfDoj0B4e9Om5JEO5--2zg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shippori Mincho B1\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChQKElNoaXBwb3JpIE1pbmNobyBCMSAAKgQIARgB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRj0AyAAKgQIARgB.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRjYBCAAKgQIARgB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRi8BSAAKgQIARgB.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/shipporiminchob1/v19/~ChcKElNoaXBwb3JpIE1pbmNobyBCMRigBiAAKgQIARgB.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shojumaru\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Short Stack\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Shrikhand\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gujarati\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/shrikhand/v11/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Siemreap\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/siemreap/v24/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sigmar One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sigmarone/v16/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Signika\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tIJHJbGhs_cfKe1.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJXHJbGhs_cfKe1.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tJlHJbGhs_cfKe1.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKJG5bGhs_cfKe1.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/signika/v20/vEFO2_JTCgwQ5ejvMV0O96D01E8J0tKwG5bGhs_cfKe1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Signika Negative\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAr5S73st9hiuEq8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS73st9hiuEq8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqVS73st9hiuEq8.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAp5TL3st9hiuEq8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/signikanegative/v20/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RApATL3st9hiuEq8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Silkscreen\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JXjfVPf62XiF7kO-i9ULRvamODxdI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/silkscreen/v1/m8JUjfVPf62XiF7kO-i9aAhATmuo2dudFvc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Simonetta\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/simonetta/v23/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/simonetta/v23/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Single Day\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/singleday/v15/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sintony\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sintony/v13/XoHm2YDqR7-98cVUITQnu98ojjs.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sintony/v13/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sirin Stencil\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sirinstencil/v21/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Six Caps\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sixcaps/v16/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Skranji\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/skranji/v13/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slabo 13px\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slabo13px/v13/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slabo 27px\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slabo27px/v12/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Slackey\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/slackey/v24/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smokum\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smokum/v24/TK3iWkUbAhopmrdGHjUHte5fKg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smooch\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smooch/v5/o-0LIps4xW8U1xUBjqp_6hVdYg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smooch Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUFodqIeNlzayg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUBodqIeNlzayg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oin0BodqIeNlzayg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiwUBodqIeNlzayg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oi80BodqIeNlzayg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiH0dodqIeNlzayg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiJkdodqIeNlzayg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiQUdodqIeNlzayg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/smoochsans/v6/c4mz1n5uGsXss2LJh1QH6b129FZvxPj6I4oiaEdodqIeNlzayg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Smythe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1BOLh_uGInjA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sniglet\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sniglet/v17/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Snippet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Snowburst One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sofadi One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sofia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_vu-sowsrqjk.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Solway\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/solway/v15/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/solway/v15/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Song Myung\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/songmyung/v20/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sonsie One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sora\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSn3-KIwNhBti0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSnn-KIwNhBti0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmScMnn-KIwNhBti0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdSnn-KIwNhBti0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSdgnn-KIwNhBti0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSeMmX-KIwNhBti0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSe1mX-KIwNhBti0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sora/v11/xMQOuFFYT72X5wkB_18qmnndmSfSmX-KIwNhBti0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sorts Mill Goudy\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Code Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyQhM5hTXUcdJg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DJKQhM5hTXUcdJg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQhM5hTXUcdJg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DP6QhM5hTXUcdJg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DBKXhM5hTXUcdJg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DCuXhM5hTXUcdJg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DEyXhM5hTXUcdJg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DGWXhM5hTXUcdJg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7I1rSVcZZJiGpw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTMo1rSVcZZJiGpw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTbI1rSVcZZJiGpw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTXo1rSVcZZJiGpw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTsoprSVcZZJiGpw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTi4prSVcZZJiGpw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTT7IprSVcZZJiGpw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcecodepro/v22/HI_jiYsKILxRpg3hIP6sJ7fM7PqlOPHYvDP_W9O7GQTTxYprSVcZZJiGpw.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Sans 3\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw461EN_io6npfB.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kzm61EN_io6npfB.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Ky461EN_io6npfB.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KyK61EN_io6npfB.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxm7FEN_io6npfB.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kxf7FEN_io6npfB.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8Kw47FEN_io6npfB.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpBtKy2OAdR1K-IwhWudF-R9QMylBJAV3Bo8KwR7FEN_io6npfB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlO9C4Ym4fB3Ts.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqOdO9C4Ym4fB3Ts.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqLlO9C4Ym4fB3Ts.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqItO9C4Ym4fB3Ts.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqGdJ9C4Ym4fB3Ts.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqF5J9C4Ym4fB3Ts.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqDlJ9C4Ym4fB3Ts.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesans3/v8/nwpDtKy2OAdR1K-IwhWudF-R3woAa8opPOrG97lwqBBJ9C4Ym4fB3Ts.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Sans Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourcesanspro/v21/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Serif 4\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdqrhxXD-wGvjU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiklqrhxXD-wGvjU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhxXD-wGvjU.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjiiVqrhxXD-wGvjU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjisltrhxXD-wGvjU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjivBtrhxXD-wGvjU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjipdtrhxXD-wGvjU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjir5trhxXD-wGvjU.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxl9dC84DrjXEXw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pGF9dC84DrjXEXw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pRl9dC84DrjXEXw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pdF9dC84DrjXEXw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pmFhdC84DrjXEXw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98poVhdC84DrjXEXw.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98pxlhdC84DrjXEXw.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserif4/v7/vEF02_tTDB4M7-auWDN0ahZJW1ge6NmXpVAHV83Bfb_US2D2QYxoUKIkn98p71hdC84DrjXEXw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Source Serif Pro\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasbsfhSugxYUvZrI.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGbSqqwacqdrKvbQ.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasd8chSugxYUvZrI.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGCSmqwacqdrKvbQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIWzD-0qpwxpaWvjeD0X88SAOeauXE-pQGOyYw2fw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGfS-qwacqdrKvbQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGGS6qwacqdrKvbQ.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIXzD-0qpwxpaWvjeD0X88SAOeasfcZhSugxYUvZrI.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/sourceserifpro/v15/neIVzD-0qpwxpaWvjeD0X88SAOeauXEGISyqwacqdrKvbQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Space Grotesk\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj62UUsjNsFjTDJK.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7oUUsjNsFjTDJK.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj7aUUsjNsFjTDJK.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj42VksjNsFjTDJK.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spacegrotesk/v13/V8mQoQDjQSkFtoMM3T6r8E7mF71Q-gOoraIAEj4PVksjNsFjTDJK.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Space Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spacemono/v12/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Special Elite\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/specialelite/v18/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spectral\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spectral/v13/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/spectral/v13/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/spectral/v13/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spectral SC\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/spectralsc/v11/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spicy Rice\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spicyrice/v21/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spinnaker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spinnaker/v17/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spirax\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3cXktt-Csn-Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Splash\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/splash/v1/KtksAL2RZoDkbU6hpPPGNdS6wg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spline Sans\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpZlnYEtvlUfE2kw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpOFnYEtvlUfE2kw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRpClnYEtvlUfE2kw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp5l7YEtvlUfE2kw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/splinesans/v8/_6_sED73Uf-2WfU2LzycEZousNzn1a1lKWRp317YEtvlUfE2kw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Spline Sans Mono\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGA8MrtVy4d4dGb1.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBiMrtVy4d4dGb1.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGBQMrtVy4d4dGb1.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGC8NbtVy4d4dGb1.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70MjzAei_CDNLfgZxrW6wrZOF2WdZ6xabUGSVtNuGCFNbtVy4d4dGb1.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcQ0WwYNacXb12MM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcVMWwYNacXb12MM.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcWEWwYNacXb12MM.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcY0RwYNacXb12MM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/splinesansmono/v4/R70yjzAei_CDNLfgZxrW6wrZOF2WX5eDlm1vIsHjv3WqcbQRwYNacXb12MM.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Squada One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/squadaone/v14/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Square Peg\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/squarepeg/v2/y83eW48Nzw6ZlUHc-phrBDHrHHfrFPE.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sree Krushnadevaraya\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sreekrushnadevaraya/v21/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sriracha\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sriracha/v10/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Srisakdi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/srisakdi/v16/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Staatliches\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/staatliches/v11/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stalemate\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stalemate/v20/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stalinist One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v54\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stalinistone/v54/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stardos Stencil\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/stardosstencil/v15/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stick\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stick/v15/Qw3TZQpMCyTtJSvfvPVDMPoF.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stick No Bills\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8Q7KriwKhcTKA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcV4cQ7KriwKhcTKA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVv8Q7KriwKhcTKA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVjcQ7KriwKhcTKA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVYcM7KriwKhcTKA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVWMM7KriwKhcTKA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/sticknobills/v8/bWts7ffXZwHuAa9Uld-oEK4QKlxj9f9t_7uEmjcVP8M7KriwKhcTKA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stint Ultra Condensed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stintultracondensed/v21/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stint Ultra Expanded\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stintultraexpanded/v20/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stoke\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/stoke/v22/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/stoke/v22/z7NadRb7aTMfKONpfihK1YTV.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Strait\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/strait/v13/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Style Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stylescript/v7/vm8xdRX3SV7Z0aPa88xzW5npeFT76NZnMw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Stylish\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/stylish/v20/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sue Ellen Francisco\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sueellenfrancisco/v16/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suez One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suezone/v11/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sulphur Point\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sulphurpoint/v14/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sumana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sumana/v10/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sumana/v10/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sunflower\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"500\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sunflower/v14/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sunshiney\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Supermercado One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/supermercadoone/v22/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Sura\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/sura/v15/SZc23FL5PbyzFf5UWzXtjUM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/sura/v15/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suranna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suranna/v13/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suravaram\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/suravaram/v21/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Suwannaphum\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v29\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnAgHV7GtDvc8jbe8hXXL3B9cSWXx2VZmk.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0J1-S8cRGcf3Ai.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0Z0OS8cRGcf3Ai.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/suwannaphum/v29/jAnfgHV7GtDvc8jbe8hXXL0h0uS8cRGcf3Ai.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Swanky and Moo Moo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/swankyandmoomoo/v22/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syncopate\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/syncopate/v19/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_04uT6kR47NCV5Z.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_0KuT6kR47NCV5Z.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3mvj6kR47NCV5Z.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6kR47NCV5Z.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/syne/v15/8vIS7w4qzmVxsWxjBZRjr0FKM_24vj6kR47NCV5Z.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne Mono\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/synemono/v15/K2FzfZNHj_FHBmRbFvHzIqCkDyvqZA.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Syne Tactile\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/synetactile/v15/11hGGpna2UTQKjMCVzjAPMKh3ysdjvKU8Q.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tai Heritage Pro\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tai-viet\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v1\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/taiheritagepro/v1/sZlfdQid-zgaNiNIYcUzJMU3IYyNoHxSENxuLuE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/taiheritagepro/v1/sZlYdQid-zgaNiNIYcUzJMU3IYyNmMB9NNRFMuhjCXY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tajawal\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tajawal/v9/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tajawal/v9/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tangerine\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tangerine/v17/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tapestry\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tapestry/v2/SlGTmQecrosEYXhaGBIkqnB6aSQU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Taprom\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"khmer\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v27\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/taprom/v27/UcCn3F82JHycULbFQyk3-0kvHg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tauri\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tauri/v16/TwMA-IISS0AM3IpVWHU_TBqO.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Taviraj\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/taviraj/v11/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/taviraj/v11/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Teko\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/teko/v15/LYjNdG7kmE0gTaR3pCtBtVs.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/teko/v15/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Telex\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/telex/v14/ieVw2Y1fKWmIO9fTB1piKFIf.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tenali Ramakrishna\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tenaliramakrishna/v12/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tenor Sans\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tenorsans/v17/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Text Me One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/textmeone/v20/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Texturina\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYG_Ug25riW1OD.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYGvUg25riW1OD.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2fGGvUg25riW1OD.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eYGvUg25riW1OD.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2eqGvUg25riW1OD.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2dGHfUg25riW1OD.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2d_HfUg25riW1OD.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cYHfUg25riW1OD.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/texturina/v21/c4mM1nxpEtL3pXiAulRTkY-HGmNEX1b9NspjMwhAgliHhVrXy2cxHfUg25riW1OD.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1i0Z7AXkODN94.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1j0Z7AXkODN94.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWUNj0Z7AXkODN94.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWR1j0Z7AXkODN94.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWS9j0Z7AXkODN94.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWcNk0Z7AXkODN94.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWfpk0Z7AXkODN94.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWZ1k0Z7AXkODN94.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/texturina/v21/c4mO1nxpEtL3pXiAulR5mL129FhZmLj7I4oiSUJyfYDu7sB5zHJQWbRk0Z7AXkODN94.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Thasadith\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/thasadith/v9/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/thasadith/v9/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"The Girl Next Door\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thegirlnextdoor/v18/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"The Nautigal\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGZAZ8ZH51Lvng9fQV2bfKr5wVk09Se5Q.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/thenautigal/v3/VdGGAZ8ZH51Lvng9fQV2bfKTWypA2_-C7LoS7g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tienne\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tienne/v20/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tillana\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tillana/v11/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tillana/v11/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Timmana\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v12\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/timmana/v12/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tinos\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwgX8dGVh8TI-.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tinos/v24/buE2poGnedXvwjX-fmFD9CI-4NU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tinos/v24/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tinos/v24/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Bangla\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"bengali\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirobangla/v4/IFSgHe1Tm95E3O8b5i2V8MG9-UPeuz4i.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirobangla/v4/IFSiHe1Tm95E3O8b5i2V8PG_80f8vi4imBM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Hindi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v3/55xyezN7P8T4e0_CfIJrwdodg9HoYw0i-M9fSOkOfG0Y3A.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarihindi/v3/55x8ezN7P8T4e0_CfIJrwdodg9HoYw0i-M9vSuMKXmgI3F_o.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Marathi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v3/fC1xPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkotDrDJYM2lAZ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarimarathi/v3/fC1zPZBSZHrRhS3rd4M0MAPNJUHl4znXCxAkouDpBpIu30AZbUY.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Devanagari Sanskrit\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v3/MCoAzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59pEoEqgtOh0w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirodevanagarisanskrit/v3/MCoGzBbr09vVUgVBM8FWu_yZdZkhkg-I0nUlb59ZEIsuoNax06MM.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Gurmukhi\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"gurmukhi\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirogurmukhi/v4/x3dmckXSYq-Uqjc048JUF7Jvly7HAQsyA2Y.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirogurmukhi/v4/x3d4ckXSYq-Uqjc048JUF7JvpyzNBSk3E2YljQ.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Kannada\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"kannada\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirokannada/v4/CSR44ztKmvqaDxEDJFY7CIYKSPl6tOU9Eg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirokannada/v4/CSRm4ztKmvqaDxEDJFY7CIY6SvN-luAtEnKp.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Tamil\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"tamil\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirotamil/v4/m8JXjfVIf7OT22n3M-S_ULRvamODxdI.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirotamil/v4/m8JVjfVIf7OT22n3M-S_YLZlbkGG1dKEDw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tiro Telugu\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"telugu\"\r\n      ],\r\n      \"version\": \"v4\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tirotelugu/v4/aFTQ7PxlZWk2EPiSymjXdKSNQqn0X0BO.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tirotelugu/v4/aFTS7PxlZWk2EPiSymjXdJSPSK3WWlBOoas.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Titan One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/titanone/v13/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Titillium Web\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/titilliumweb/v15/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tomorrow\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/tomorrow/v15/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tourney\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQByZTp1I1LcGA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQFyZTp1I1LcGA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GZwFyZTp1I1LcGA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GOQFyZTp1I1LcGA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GCwFyZTp1I1LcGA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G5wZyZTp1I1LcGA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7G3gZyZTp1I1LcGA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GuQZyZTp1I1LcGA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/tourney/v8/AlZa_ztDtYzv1tzq1wcJnbVt7xseomk-tNs7qrzTWbyt8n7GkAZyZTp1I1LcGA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJzBxAVfMGOPb.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaJjBxAVfMGOPb.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8ULEJjBxAVfMGOPb.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKaJjBxAVfMGOPb.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UKoJjBxAVfMGOPb.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJEITBxAVfMGOPb.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UJ9ITBxAVfMGOPb.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIaITBxAVfMGOPb.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/tourney/v8/AlZc_ztDtYzv1tzq_Q47flUUvI2wpXz29ilymEMLMNc3XHnT8UIzITBxAVfMGOPb.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trade Winds\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tradewinds/v17/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Train One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trainone/v13/gyB-hwkiNtc6KnxUVjWHOqbZRY7JVQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trirong\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"100italic\",\r\n        \"200\",\r\n        \"200italic\",\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\",\r\n        \"800\",\r\n        \"800italic\",\r\n        \"900\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"thai\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/trirong/v11/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/trirong/v11/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/trirong/v11/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trispace\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9qoQl0zHugpt0.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9roQl0zHugpt0.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbCFroQl0zHugpt0.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbH9roQl0zHugpt0.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbE1roQl0zHugpt0.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbKFsoQl0zHugpt0.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbJhsoQl0zHugpt0.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/trispace/v18/Yq65-LKSQC3o56LxxgRrtA6yBqsrXL5GI5KI-IUZVGsxWFIlbP9soQl0zHugpt0.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trocchi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trocchi/v14/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trochut\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trochut/v20/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/trochut/v20/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/trochut/v20/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Truculenta\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAjswcFHnJMMhg.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAiswcFHnJMMhg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMg4iswcFHnJMMhg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMlAiswcFHnJMMhg.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMmIiswcFHnJMMhg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMo4lswcFHnJMMhg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMrclswcFHnJMMhg.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMtAlswcFHnJMMhg.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/truculenta/v18/LhWfMVvBKusVIfNYGi1-WvRVyDdZeeiySNppcu32Mb2f06y6Oa21F6XHi0VYDX_PzOupMvklswcFHnJMMhg.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Trykker\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPzhNnoOd2j22U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Tulpen One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/tulpenone/v21/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Turret Road\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"800\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/turretroad/v7/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/turretroad/v7/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Twinkle Star\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/twinklestar/v3/pe0pMI6IL4dPoFl9LGEmY6WaA_Rue1UwVg.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntu/v20/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu Condensed\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ubuntu Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"greek-ext\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/ubuntumono/v15/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Uchen\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"tibetan\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/uchen/v7/nKKZ-GokGZ1baIaSEQGodLxA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Ultra\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/ultra/v19/zOLy4prXmrtY-tT6yLOD6NxF.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Uncial Antiqua\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/uncialantiqua/v20/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Underdog\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/underdog/v22/CHygV-jCElj7diMroVSiU14GN2Il.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unica One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unicaone/v13/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"UnifrakturCook\",\r\n      \"variants\": [\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"700\": \"http://fonts.gstatic.com/s/unifrakturcook/v19/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"UnifrakturMaguntia\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unifrakturmaguntia/v16/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unkempt\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/unkempt/v19/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unlock\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unlock/v22/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Unna\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/unna/v21/AYCEpXzofN0NCpgBlGHCWFM.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/unna/v21/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/unna/v21/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Updock\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/updock/v2/nuF4D_3dVZ70UI9SjLK3602XBw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Urbanist\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx8fFpOrS8SlKw.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSx4fFpOrS8SlKw.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDlR4fFpOrS8SlKw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDyx4fFpOrS8SlKw.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqD-R4fFpOrS8SlKw.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDFRkfFpOrS8SlKw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDLBkfFpOrS8SlKw.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDSxkfFpOrS8SlKw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xjDF02iFML4hGCyOCpRdycFsGxSrqDYhkfFpOrS8SlKw.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VJmvacG1K4S1.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113VZmvacG1K4S1.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA12pVZmvacG1K4S1.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA133VZmvacG1K4S1.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA13FVZmvacG1K4S1.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10pUpmvacG1K4S1.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA10QUpmvacG1K4S1.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA113UpmvacG1K4S1.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/urbanist/v10/L0xtDF02iFML4hGCyMqgdyNEf6or5L2WA11eUpmvacG1K4S1.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"VT323\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2hsYHpT2dkNE.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vampiro One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varela\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varela Round\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"hebrew\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/varelaround/v19/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Varta\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x96j4EirE-9PGLfQ.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9tD4EirE-9PGLfQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9hj4EirE-9PGLfQ.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9ajkEirE-9PGLfQ.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/varta/v17/Qw3AZQpJHj_6LzHUngWbrFkDH1x9UzkEirE-9PGLfQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vast Shadow\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vastshadow/v15/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vazirmatn\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v6\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgyOReZ72DF_QY.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklegzOReZ72DF_QY.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklTYzOReZ72DF_QY.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklWgzOReZ72DF_QY.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklVozOReZ72DF_QY.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklbY0OReZ72DF_QY.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklY80OReZ72DF_QY.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRkleg0OReZ72DF_QY.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vazirmatn/v6/Dxx78j6PP2D_kU2muijPEe1n2vVbfJRklcE0OReZ72DF_QY.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vesper Libre\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vesperlibre/v19/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Viaoda Libre\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/viaodalibre/v15/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vibes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"arabic\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vibes/v14/QdVYSTsmIB6tmbd3HpbsuBlh.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vibur\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v23\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vidaloka\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEass8yn4hnCci.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Viga\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiX_QIjD4e2OX8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Voces\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/voces/v20/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Volkhov\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/volkhov/v17/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vollkorn\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"greek\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v21\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/vollkorn/v21/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vollkorn SC\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"600\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/vollkornsc/v11/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Voltaire\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/voltaire/v15/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Vujahday Script\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/vujahdayscript/v3/RWmQoKGA8fEkrIPtSZ3_J7er2dUiDEtvAlaMKw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Waiting for the Sunrise\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waitingforthesunrise/v16/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wallpoet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v16\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wallpoet/v16/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Walter Turncoat\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v19\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/walterturncoat/v19/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Warnes\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v22\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/warnes/v22/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Water Brush\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waterbrush/v2/AYCPpXPqc8cJWLhp4hywKHJq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Waterfall\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v3\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/waterfall/v3/MCoRzAfo293fACdFKcwY2rH8D_EZwA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wellfleet\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wellfleet/v20/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wendy One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-04-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wendyone/v14/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Whisper\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v2\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/whisper/v2/q5uHsoqtKftx74K9milCBxxdmYU.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"WindSong\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"500\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/windsong/v7/KR1WBsyu-P-GFEW57r95HdG6vjH3.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/windsong/v7/KR1RBsyu-P-GFEW57oeNNPWylS3-jVXm.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Wire One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/wireone/v24/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Work Sans\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"800\",\r\n        \"900\",\r\n        \"100italic\",\r\n        \"200italic\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\",\r\n        \"800italic\",\r\n        \"900italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf\",\r\n        \"200\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf\",\r\n        \"800\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/worksans/v18/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf\",\r\n        \"100italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf\",\r\n        \"200italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf\",\r\n        \"800italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf\",\r\n        \"900italic\": \"http://fonts.gstatic.com/s/worksans/v18/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Xanh Mono\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70YjykVmvKCep-vWhSYmACQXzLhTg.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/xanhmono/v17/R70ejykVmvKCep-vWhSomgqUfTfxTo24.ttf\"\r\n      },\r\n      \"category\": \"monospace\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yaldevi\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"sinhala\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpfxJzvobxLCBJkS.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpcvJzvobxLCBJkS.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdxJzvobxLCBJkS.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpdDJzvobxLCBJkS.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpevIDvobxLCBJkS.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yaldevi/v8/cY9afj6VW0NMrDWtDNzCOwlPMq9SLpeWIDvobxLCBJkS.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yanone Kaffeesatz\",\r\n      \"variants\": [\r\n        \"200\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v24\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"200\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yanonekaffeesatz/v24/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yantramanav\",\r\n      \"variants\": [\r\n        \"100\",\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"100\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf\",\r\n        \"300\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yantramanav/v11/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/yantramanav/v11/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yatra One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"devanagari\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yatraone/v14/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yellowtail\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v18\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yellowtail/v18/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yeon Sung\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"korean\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yeonsung/v20/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yeseva One\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"cyrillic-ext\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v20\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yesevaone/v20/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yesteryear\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v14\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yesteryear/v14/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yomogi\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v8\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yomogi/v8/VuJwdNrS2ZL7rpoPWIz5NIh-YA.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yrsa\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"600\",\r\n        \"700\",\r\n        \"300italic\",\r\n        \"italic\",\r\n        \"500italic\",\r\n        \"600italic\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\",\r\n        \"vietnamese\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCjASNNV9rRPfrKu.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCieSNNV9rRPfrKu.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCisSNNV9rRPfrKu.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaChAT9NV9rRPfrKu.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/yrsa/v15/wlprgwnQFlxs_wD3CFSMYmFaaCh5T9NV9rRPfrKu.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC2UW_LBte6KuGEo.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCzsW_LBte6KuGEo.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WCwkW_LBte6KuGEo.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC-UR_LBte6KuGEo.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/yrsa/v15/wlptgwnQFlxs1QnF94zlCfv0bz1WC9wR_LBte6KuGEo.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Boku\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujiboku/v5/P5sAzZybeNzXsA9xj1Fkjb2r2dgvJA.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Mai\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujimai/v5/ZgNQjPxdJ7DEHrS0gC38hmHmNpCO.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yuji Syuku\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v5\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yujisyuku/v5/BngNUXdTV3vO6Lw5ApOPqPfgwqiA-Rk.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Yusei Magic\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/yuseimagic/v11/yYLt0hbAyuCmoo5wlhPkpjHR-tdfcIT_.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL KuaiLe\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolkuaile/v17/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL QingKe HuangYou\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v13\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolqingkehuangyou/v13/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"ZCOOL XiaoWei\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zcoolxiaowei/v10/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Antique\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenantique/v10/AYCPpXPnd91Ma_Zf-Ri2JXJq7PKP5Z_G.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Antique Soft\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenantiquesoft/v10/DtV4JwqzSL1q_KwnEWMc_3xfgW6ihwBmkui5HNg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Dots\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zendots/v10/XRXX3ICfm00IGoesQeaETM_FcCIG.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kaku Gothic Antique\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cM9TarWJtyZyGU.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLQKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB21-g3RKjc4d7.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22dU9DarWJtyZyGU.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22cc8jarWJtyZyGU.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicantique/v11/6qLVKYkHvh-nlUpKPAdoVFBtfxDzIn1eCzpB22ck8DarWJtyZyGU.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kaku Gothic New\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqpdKaWTSTGlMyd8.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMYW2drQpDw0GjzrVNFf_valaDBcznOkjtiTWz5UGA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqs9LaWTSTGlMyd8.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqodNaWTSTGlMyd8.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenkakugothicnew/v11/gNMVW2drQpDw0GjzrVNFf_valaDBcznOqr9PaWTSTGlMyd8.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Kurenaido\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenkurenaido/v10/3XFsEr0515BK2u6UUptu_gWJZfz22PRLd0U.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Loop\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GrssK16UsnJwHsEK9zqwzX5vOG.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/zenloop/v7/h0GtssK16UsnJwHsEJ9xoQj14-OGJ0w.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Maru Gothic\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"regular\",\r\n        \"500\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v10\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cQWpCPJqa_ajlvw.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0SIpIxzW5b-RxT-6A8jWAtCp-k7UJmNLGG9A.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cGWtCPJqa_ajlvw.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-cUW1CPJqa_ajlvw.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenmarugothic/v10/o-0XIpIxzW5b-RxT-6A8jWAtCp-caW9CPJqa_ajlvw.ttf\"\r\n      },\r\n      \"category\": \"sans-serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Old Mincho\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\",\r\n        \"900\"\r\n      ],\r\n      \"subsets\": [\r\n        \"cyrillic\",\r\n        \"greek\",\r\n        \"japanese\",\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v9\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss0ApVaYytLwxTqcxfMyBveyYb3g31S2s8p.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss3ApVaYytLwxTqcxfMyBveyb5LrFla8dMgPgBu.ttf\",\r\n        \"900\": \"http://fonts.gstatic.com/s/zenoldmincho/v9/tss3ApVaYytLwxTqcxfMyBveyb5zrlla8dMgPgBu.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zen Tokyo Zoo\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v7\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zentokyozoo/v7/NGSyv5ffC0J_BK6aFNtr6sRv8a1uRWe9amg.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zeyada\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v15\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zeyada/v15/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zhi Mang Xing\",\r\n      \"variants\": [\r\n        \"regular\"\r\n      ],\r\n      \"subsets\": [\r\n        \"chinese-simplified\",\r\n        \"latin\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-27\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zhimangxing/v17/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf\"\r\n      },\r\n      \"category\": \"handwriting\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zilla Slab\",\r\n      \"variants\": [\r\n        \"300\",\r\n        \"300italic\",\r\n        \"regular\",\r\n        \"italic\",\r\n        \"500\",\r\n        \"500italic\",\r\n        \"600\",\r\n        \"600italic\",\r\n        \"700\",\r\n        \"700italic\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v11\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"300\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf\",\r\n        \"300italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf\",\r\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf\",\r\n        \"italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf\",\r\n        \"500\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf\",\r\n        \"500italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf\",\r\n        \"600\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf\",\r\n        \"600italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf\",\r\n        \"700italic\": \"http://fonts.gstatic.com/s/zillaslab/v11/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf\"\r\n      },\r\n      \"category\": \"serif\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    },\r\n    {\r\n      \"family\": \"Zilla Slab Highlight\",\r\n      \"variants\": [\r\n        \"regular\",\r\n        \"700\"\r\n      ],\r\n      \"subsets\": [\r\n        \"latin\",\r\n        \"latin-ext\"\r\n      ],\r\n      \"version\": \"v17\",\r\n      \"lastModified\": \"2022-09-22\",\r\n      \"files\": {\r\n        \"regular\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf\",\r\n        \"700\": \"http://fonts.gstatic.com/s/zillaslabhighlight/v17/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf\"\r\n      },\r\n      \"category\": \"display\",\r\n      \"kind\": \"webfonts#webfont\"\r\n    }\r\n  ]\r\n}\";}','no');
INSERT INTO `staging_ajj_options` VALUES (3425,'_elementor_settings_update_time','1694139173','yes'),(3426,'elementor_allow_tracking','no','yes'),(3427,'elementor_google_maps_api_key','','yes'),(3428,'elementor_editor_break_lines','','yes'),(3429,'elementor_unfiltered_files_upload','','yes'),(3430,'elementor_google_font','1','yes'),(3431,'elementor_font_display','auto','yes'),(3432,'elementor_meta_generator_tag','','yes'),(3433,'elementor_experiment-e_font_icon_svg','active','yes'),(3434,'elementor_experiment-container','active','yes'),(3435,'elementor_experiment-container_grid','active','yes'),(3436,'elementor_experiment-editor_v2','active','yes'),(3437,'elementor_experiment-landing-pages','active','yes'),(3438,'elementor_experiment-nested-elements','active','yes'),(3439,'elementor_experiment-e_lazyload','active','yes'),(3440,'elementor_experiment-e_global_styleguide','active','yes'),(3441,'elementor_experiment-e_dom_optimization','active','yes'),(3442,'elementor_experiment-e_optimized_assets_loading','active','yes'),(3443,'elementor_experiment-e_optimized_css_loading','active','yes'),(3444,'elementor_experiment-additional_custom_breakpoints','active','yes'),(3445,'elementor_experiment-e_swiper_latest','active','yes'),(3616,'elementor_pro_license_key','*********','yes'),(3617,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1711285594;s:5:\"value\";s:71:\"{\"success\":true,\"license\":\"valid\",\"expires\":\"01.01.2030\",\"features\":[]}\";}','yes'),(3622,'elementor_pro_version','3.14.1','yes'),(3623,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3634,'_elementor_pro_installed_time','1694141765','yes'),(3635,'elementor_submissions_db_version','5','yes'),(3640,'elementor_fonts_manager_font_types','a:0:{}','yes'),(3641,'elementor_fonts_manager_fonts','a:0:{}','yes'),(3642,'elementor_custom_icon_sets_config','a:0:{}','yes'),(3701,'_elementor_pro_api_requests_lock','a:1:{s:11:\"get_version\";i:1710459482;}','yes'),(3885,'deleted_plugin','a:7:{s:4:\"slug\";s:24:\"wordpress-seo/wp-seo.php\";s:7:\"version\";s:4:\"21.1\";s:5:\"title\";s:9:\"Yoast SEO\";s:3:\"url\";s:18:\"https://yoa.st/1uj\";s:6:\"active\";b:0;s:2:\"mu\";b:0;s:12:\"auto_updates\";b:1;}','yes'),(4761,'elementor_log','a:42:{s:32:\"60945106f6c1a2ece504b91c00323b1f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-09 18:45:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.4\";s:2:\"to\";s:6:\"3.16.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-09 18:45:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.4\";s:2:\"to\";s:6:\"3.16.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"81e69425a74b43d6053fd1f6dbcc67ff\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"5b118bb9ed41e6a60009ca0f81ea8213\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"2decbacefc412d8e77949cee626bcb17\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ed699d54202c043c73b1c71a42473a20\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"24d19c2cf9aae7f00432c1d15ccfa0ac\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"25d800e5023cb26e472452219b30aace\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.5\";s:2:\"to\";s:6:\"3.16.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.5\";s:2:\"to\";s:6:\"3.16.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bd4f9b4bcc9606d2fe4f1f492806954b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-17 19:19:37\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.5\";s:2:\"to\";s:6:\"3.16.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-17 19:19:37\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.5\";s:2:\"to\";s:6:\"3.16.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3f1b735825651bb363743271cd2127a0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"1f9fca5fd226cdf752f13a102bd41904\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"57898a84905535c605682efa0c96f1c2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"0b66a089f1b8c2ff41ba4b6966c6073e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:59:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:59:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"497bb6b1399a531a27e6b0874f4c2b4b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:61:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:61:\"Elementor/Upgrades - _v_3_17_0_site_settings_updates Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"673e296bc971ac1e992631ee4aad3394\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.6\";s:2:\"to\";s:6:\"3.17.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.6\";s:2:\"to\";s:6:\"3.17.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"bb3b7504d6dfd59ac001bfcc47a8944d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:28\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.6\";s:2:\"to\";s:6:\"3.17.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-10-25 18:09:28\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.16.6\";s:2:\"to\";s:6:\"3.17.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"6c8f3cd672ebb255f7d9a354d23891c5\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0date\";s:19:\"2023-10-25 18:09:30\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:179;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2023-11-19 09:59:26\";i:1;s:19:\"2023-11-19 09:59:30\";i:2;s:19:\"2023-11-19 09:59:32\";i:3;s:19:\"2023-11-19 16:03:03\";i:4;s:19:\"2023-11-19 16:03:05\";i:5;s:19:\"2023-11-20 02:45:52\";i:6;s:19:\"2023-11-20 15:41:14\";i:7;s:19:\"2023-11-21 01:53:32\";i:8;s:19:\"2023-11-21 06:35:37\";i:9;s:19:\"2023-11-21 13:27:59\";i:10;s:19:\"2023-11-21 16:47:25\";i:11;s:19:\"2023-11-21 16:47:30\";i:12;s:19:\"2023-11-22 01:55:09\";i:13;s:19:\"2023-11-23 01:02:57\";i:14;s:19:\"2023-11-23 21:19:10\";i:15;s:19:\"2023-11-23 21:19:17\";i:16;s:19:\"2023-11-23 21:19:23\";i:17;s:19:\"2023-11-24 00:24:17\";i:18;s:19:\"2023-11-24 03:34:47\";i:19;s:19:\"2023-11-24 03:34:54\";i:20;s:19:\"2023-11-24 14:53:42\";i:21;s:19:\"2023-11-24 14:53:48\";i:22;s:19:\"2023-11-24 16:40:15\";i:23;s:19:\"2023-11-24 17:39:18\";i:24;s:19:\"2023-11-24 17:39:19\";i:25;s:19:\"2023-11-25 07:56:49\";i:26;s:19:\"2023-11-25 15:26:45\";i:27;s:19:\"2023-11-25 15:26:54\";i:28;s:19:\"2023-11-25 16:43:14\";i:29;s:19:\"2023-11-26 03:08:54\";i:30;s:19:\"2023-11-26 03:08:55\";i:31;s:19:\"2023-11-26 03:18:27\";i:32;s:19:\"2023-11-26 03:31:39\";i:33;s:19:\"2023-11-26 03:31:56\";i:34;s:19:\"2023-11-27 02:34:06\";i:35;s:19:\"2023-12-06 20:44:19\";i:36;s:19:\"2023-12-06 20:44:27\";i:37;s:19:\"2023-12-09 05:40:49\";i:38;s:19:\"2023-12-09 05:40:51\";i:39;s:19:\"2024-03-08 07:45:52\";i:40;s:19:\"2024-03-16 00:11:04\";i:41;s:19:\"2024-03-19 13:45:51\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:88:\"version_compare(): Passing null to parameter #2 ($version2) of type string is deprecated\";s:4:\"file\";s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/plugins/elementor/core/experiments/manager.php\";s:4:\"line\";i:163;s:5:\"trace\";b:1;}s:7:\"\0*\0file\";s:107:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/plugins/elementor/core/experiments/manager.php\";s:7:\"\0*\0line\";i:163;}s:32:\"919aa18e175febea2bf3b752171fd023\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-01 15:54:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-01 15:54:47\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e3de1b6aab4b0da5bec66fda8adec094\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-01 15:54:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-01 15:54:47\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"59d6d4eecba91f24e4f68060eb5ae312\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-01 15:54:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-01 15:54:47\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"020fb62828f61570edd78b37b69b4407\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-01 15:54:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.17.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-01 15:54:47\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.17.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"ac7cc7a1b7f87cd6c45b83319634692b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-01 15:54:47\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.17.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-01 15:54:47\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.1\";s:2:\"to\";s:6:\"3.17.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"047d35683e33e11028a503670f0ef19e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-08 18:44:34\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-08 18:44:34\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"76dcbeb25c00239296ced679902354a0\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-08 18:44:34\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-08 18:44:34\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"bbcdebba99879a75fa143eb9d538a639\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-08 18:44:34\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-08 18:44:34\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"28f9a57150f213f2a26a4ff41d7996e7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-08 18:44:34\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.2\";s:2:\"to\";s:6:\"3.17.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-08 18:44:34\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.2\";s:2:\"to\";s:6:\"3.17.3\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"61aa6307a39ae838d7e1fce4c8ca3910\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-11-08 18:44:34\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.2\";s:2:\"to\";s:6:\"3.17.3\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-11-08 18:44:34\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.2\";s:2:\"to\";s:6:\"3.17.3\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5a6629b8d373a2043356bdf5b2d862eb\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:17\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.3\";s:2:\"to\";s:6:\"3.18.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:17\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.3\";s:2:\"to\";s:6:\"3.18.0\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"5ad5280d9ec079ebf21c90a48585a058\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a11570e58586f71166ccd0f9d5fea34e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"55defc402d723cb2c7f515ccca1350e7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:18\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"ab16b61518079e37ce553570ec1025fc\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:18\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.3\";s:2:\"to\";s:6:\"3.18.0\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:18\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.17.3\";s:2:\"to\";s:6:\"3.18.0\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"f0ecaf3109a4831caed5e8b87e9a122f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:27\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"6d9e58fe0068bfcfe3187c3a05dcca1d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:27\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"66e02aea1574d462e07d2eb9ea66e070\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:27\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"df6118d6a8d0df65c2adce80aad68864\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.0\";s:2:\"to\";s:6:\"3.18.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:27\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.0\";s:2:\"to\";s:6:\"3.18.1\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"013a77b7022e1b17321e29e322742696\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-06 20:44:27\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.0\";s:2:\"to\";s:6:\"3.18.1\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-06 20:44:27\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.0\";s:2:\"to\";s:6:\"3.18.1\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"8f2be57f8f128accada598e55efbe8c8\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:48\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:48\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b2b3d23b0dc3298fa7ced41458595e08\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"ee6718253110e6343370f958eda54440\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"d2f9923f2b289ab2cbe6f87a0ee60a8f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"6f47d1d4e745f5a3574f3f1d230674b5\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"cd8fb778185d97a8839fc6e8eefa6761\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2023-12-09 05:40:51\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2023-12-09 05:40:51\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.18.1\";s:2:\"to\";s:6:\"3.18.2\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}}','no'),(5230,'site_logo','4758','yes'),(5636,'wpcom_publish_posts_with_markdown','1','yes'),(6165,'jpsq_sync-1696032990.891330-966635-5','a:6:{i:0;s:14:\"updated_option\";i:1;a:3:{i:0;s:48:\"jetpack_sync_settings_custom_queue_table_enabled\";i:1;s:1:\"0\";i:2;i:1;}i:2;i:0;i:3;d:1696032990.8911190032958984375;i:4;b:0;i:5;a:14:{s:13:\"wpcom_user_id\";N;s:16:\"external_user_id\";i:0;s:12:\"display_name\";N;s:10:\"user_email\";N;s:10:\"user_roles\";a:0:{}s:15:\"translated_role\";N;s:7:\"is_cron\";b:0;s:7:\"is_rest\";b:0;s:9:\"is_xmlrpc\";b:0;s:10:\"is_wp_rest\";b:1;s:7:\"is_ajax\";b:0;s:11:\"is_wp_admin\";b:0;s:6:\"is_cli\";b:0;s:8:\"from_url\";s:283:\"https://healthyfoodrestaurant.in/staging/3871/?rest_route=%2Fjetpack%2Fv4%2Fsync%2Fsettings&_for=jetpack&token=sLw%5Eb1ntnADcPA%234kGbLTYmH3V2%295%23fR%3A1%3A0&timestamp=1696032989&nonce=PLN7MdG0sS&body-hash=p03riSqJgAEbjpEe4NzGVpfkolQ%3D&signature=%2B9%2FGONi0WGvgPFstNPFoN1rRh6w%3D\";}}','no'),(6816,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:28:\"arpitkmaurya1@protonmail.com\";s:7:\"version\";s:5:\"6.4.3\";s:9:\"timestamp\";i:1706660032;}','no'),(6817,'nfd_module_onboarding_flow','a:16:{s:7:\"version\";s:5:\"1.0.2\";s:8:\"isViewed\";a:0:{}s:10:\"isComplete\";i:0;s:9:\"hasExited\";i:0;s:9:\"isSkipped\";a:0:{}s:11:\"currentStep\";s:26:\"/step/wp-setup/get-started\";s:9:\"createdAt\";i:1697154392;s:9:\"updatedAt\";i:0;s:4:\"data\";a:16:{s:8:\"siteType\";a:3:{s:7:\"referTo\";s:4:\"site\";s:7:\"primary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}s:9:\"secondary\";a:2:{s:6:\"refers\";s:0:\"\";s:5:\"value\";s:0:\"\";}}s:14:\"wpComfortLevel\";s:1:\"0\";s:11:\"topPriority\";a:1:{s:9:\"priority1\";s:0:\"\";}s:8:\"blogName\";s:0:\"\";s:15:\"blogDescription\";s:0:\"\";s:8:\"siteLogo\";a:2:{s:2:\"id\";i:0;s:3:\"url\";s:0:\"\";}s:8:\"accounts\";a:0:{}s:5:\"theme\";a:3:{s:8:\"template\";s:0:\"\";s:10:\"stylesheet\";s:0:\"\";s:9:\"variation\";s:0:\"\";}s:12:\"customDesign\";b:0;s:10:\"colorStyle\";s:0:\"\";s:9:\"fontStyle\";s:0:\"\";s:10:\"partHeader\";s:0:\"\";s:9:\"sitePages\";a:2:{s:8:\"homepage\";s:0:\"\";s:5:\"other\";a:0:{}}s:12:\"siteFeatures\";a:0:{}s:8:\"chapters\";a:0:{}s:10:\"comingSoon\";b:0;}s:12:\"currentFlows\";a:0:{}s:20:\"isFirstNFDOnboarding\";b:1;s:8:\"siteType\";s:4:\"blog\";s:9:\"ownerType\";s:8:\"personal\";s:15:\"isEcommercePlan\";b:0;s:12:\"doesCommerce\";b:0;s:12:\"storeDetails\";a:1:{s:11:\"productInfo\";a:2:{s:13:\"product_count\";s:0:\"\";s:13:\"product_types\";a:0:{}}}}','yes'),(6818,'onboarding_experience_level','0','yes'),(7020,'ht_ctc_othersettings','a:9:{s:7:\"an_type\";s:12:\"no-animation\";s:8:\"an_delay\";s:1:\"0\";s:6:\"an_itr\";s:1:\"1\";s:11:\"show_effect\";s:11:\"From Corner\";s:3:\"amp\";s:1:\"1\";s:15:\"g_an_event_name\";s:14:\"chat: {number}\";s:4:\"g_an\";s:2:\"ga\";s:16:\"google_analytics\";s:1:\"1\";s:8:\"fb_pixel\";s:1:\"1\";}','yes'),(7021,'ht_ctc_chat_options','a:29:{s:2:\"cc\";s:0:\"\";s:3:\"num\";s:0:\"\";s:6:\"number\";s:13:\"+919628444458\";s:10:\"pre_filled\";s:44:\"hi I got your Information from your Website.\";s:14:\"call_to_action\";s:11:\"WhatsApp us\";s:13:\"style_desktop\";s:3:\"3_1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"15px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"15px\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:4:\"intl\";s:1:\"1\";s:13:\"position_type\";s:5:\"fixed\";s:13:\"same_settings\";s:1:\"1\";s:20:\"position_type_mobile\";s:5:\"fixed\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";s:12:\"url_target_d\";s:6:\"_blank\";s:15:\"url_structure_d\";s:7:\"default\";s:15:\"url_structure_m\";s:7:\"default\";s:15:\"display_desktop\";s:4:\"show\";s:14:\"display_mobile\";s:4:\"show\";s:7:\"display\";a:13:{s:14:\"global_display\";s:4:\"show\";s:4:\"home\";s:1:\"g\";s:5:\"posts\";s:1:\"g\";s:5:\"pages\";s:1:\"g\";s:7:\"archive\";s:1:\"g\";s:8:\"category\";s:1:\"g\";s:8:\"page_404\";s:1:\"g\";s:14:\"e-landing-page\";s:1:\"g\";s:17:\"elementor_library\";s:1:\"g\";s:17:\"list_hideon_pages\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";}}','yes'),(7022,'ht_ctc_s2','a:5:{s:11:\"s2_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25D366\";s:8:\"cta_type\";s:5:\"hover\";s:13:\"cta_font_size\";s:4:\"15px\";}','yes'),(7023,'ht_ctc_plugin_details','a:13:{s:7:\"version\";s:4:\"3.34\";s:18:\"first_install_time\";i:1697265595;s:2:\"v3\";i:1697265595;s:6:\"v3_2_5\";i:1697265595;s:6:\"v3_3_3\";i:1697265595;s:6:\"v3_3_5\";i:1697265595;s:4:\"v3_7\";i:1697265595;s:4:\"v3_8\";i:1697265595;s:4:\"v3_9\";i:1697265595;s:5:\"v3_19\";i:1697265595;s:5:\"v3_23\";i:1697265595;s:5:\"v3_28\";i:1697265595;s:5:\"v3_31\";i:1702514915;}','yes'),(7035,'ht_ctc_group','a:17:{s:8:\"group_id\";s:0:\"\";s:14:\"call_to_action\";s:14:\"WhatsApp Group\";s:13:\"style_desktop\";s:1:\"4\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:6:\"bottom\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:4:\"left\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:6:\"bottom\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:4:\"left\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(7036,'ht_ctc_share','a:17:{s:10:\"share_text\";s:34:\"Checkout this Awesome page {{url}}\";s:14:\"call_to_action\";s:14:\"WhatsApp Share\";s:13:\"style_desktop\";s:1:\"1\";s:12:\"style_mobile\";s:1:\"2\";s:6:\"side_1\";s:3:\"top\";s:12:\"side_1_value\";s:4:\"10px\";s:6:\"side_2\";s:5:\"right\";s:12:\"side_2_value\";s:4:\"10px\";s:12:\"show_or_hide\";s:4:\"hide\";s:17:\"list_hideon_pages\";s:0:\"\";s:15:\"list_hideon_cat\";s:0:\"\";s:17:\"list_showon_pages\";s:0:\"\";s:15:\"list_showon_cat\";s:0:\"\";s:13:\"mobile_side_1\";s:3:\"top\";s:19:\"mobile_side_1_value\";s:4:\"10px\";s:13:\"mobile_side_2\";s:5:\"right\";s:19:\"mobile_side_2_value\";s:4:\"10px\";}','yes'),(7037,'ht_ctc_woo_options','a:2:{s:14:\"woo_pre_filled\";s:0:\"\";s:18:\"woo_call_to_action\";s:0:\"\";}','yes'),(7038,'ht_ctc_s1','a:4:{s:13:\"s1_text_color\";s:0:\"\";s:11:\"s1_bg_color\";s:0:\"\";s:13:\"s1_icon_color\";s:7:\"#25d366\";s:12:\"s1_icon_size\";s:4:\"16px\";}','yes'),(7039,'ht_ctc_s3','a:4:{s:11:\"s3_img_size\";s:4:\"50px\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";s:8:\"cta_type\";s:4:\"hide\";}','yes'),(7040,'ht_ctc_s3_1','a:9:{s:11:\"s3_img_size\";s:4:\"40px\";s:11:\"s3_bg_color\";s:7:\"#25D366\";s:17:\"s3_bg_color_hover\";s:7:\"#25D366\";s:10:\"s3_padding\";s:4:\"14px\";s:13:\"s3_box_shadow\";s:1:\"1\";s:19:\"s3_box_shadow_hover\";s:1:\"1\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(7041,'ht_ctc_s4','a:5:{s:13:\"s4_text_color\";s:7:\"#7f7d7d\";s:11:\"s4_bg_color\";s:7:\"#e4e4e4\";s:10:\"s4_img_url\";s:0:\"\";s:15:\"s4_img_position\";s:4:\"left\";s:11:\"s4_img_size\";s:4:\"32px\";}','yes'),(7042,'ht_ctc_s5','a:12:{s:9:\"s5_line_1\";s:0:\"\";s:9:\"s5_line_2\";s:35:\"We will respond as soon as possible\";s:15:\"s5_line_1_color\";s:7:\"#000000\";s:15:\"s5_line_2_color\";s:7:\"#000000\";s:19:\"s5_background_color\";s:7:\"#ffffff\";s:15:\"s5_border_color\";s:7:\"#dddddd\";s:6:\"s5_img\";s:0:\"\";s:13:\"s5_img_height\";s:4:\"70px\";s:12:\"s5_img_width\";s:4:\"70px\";s:17:\"s5_content_height\";s:4:\"70px\";s:16:\"s5_content_width\";s:5:\"270px\";s:15:\"s5_img_position\";s:5:\"right\";}','yes'),(7043,'ht_ctc_s6','a:4:{s:12:\"s6_txt_color\";s:0:\"\";s:21:\"s6_txt_color_on_hover\";s:0:\"\";s:17:\"s6_txt_decoration\";s:0:\"\";s:26:\"s6_txt_decoration_on_hover\";s:0:\"\";}','yes'),(7044,'ht_ctc_s7','a:10:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:15:\"s7_border_color\";s:7:\"#25D366\";s:21:\"s7_border_color_hover\";s:7:\"#25d366\";s:16:\"s7_border_radius\";s:3:\"50%\";s:8:\"cta_type\";s:4:\"hide\";s:13:\"cta_textcolor\";s:7:\"#ffffff\";s:11:\"cta_bgcolor\";s:7:\"#25d366\";}','yes'),(7045,'ht_ctc_s7_1','a:7:{s:12:\"s7_icon_size\";s:4:\"20px\";s:13:\"s7_icon_color\";s:7:\"#ffffff\";s:19:\"s7_icon_color_hover\";s:7:\"#f4f4f4\";s:14:\"s7_border_size\";s:4:\"12px\";s:10:\"s7_bgcolor\";s:7:\"#25D366\";s:16:\"s7_bgcolor_hover\";s:7:\"#00d34d\";s:8:\"cta_type\";s:5:\"hover\";}','yes'),(7046,'ht_ctc_s8','a:10:{s:12:\"s8_txt_color\";s:7:\"#ffffff\";s:21:\"s8_txt_color_on_hover\";s:7:\"#ffffff\";s:11:\"s8_bg_color\";s:7:\"#26a69a\";s:20:\"s8_bg_color_on_hover\";s:7:\"#26a69a\";s:13:\"s8_icon_color\";s:7:\"#ffffff\";s:22:\"s8_icon_color_on_hover\";s:7:\"#ffffff\";s:16:\"s8_icon_position\";s:4:\"left\";s:12:\"s8_text_size\";s:0:\"\";s:12:\"s8_icon_size\";s:0:\"\";s:11:\"s8_btn_size\";s:3:\"btn\";}','yes'),(7047,'ht_ctc_s99','a:6:{s:19:\"s99_dekstop_img_url\";s:0:\"\";s:18:\"s99_mobile_img_url\";s:0:\"\";s:22:\"s99_desktop_img_height\";s:4:\"50px\";s:21:\"s99_desktop_img_width\";s:0:\"\";s:21:\"s99_mobile_img_height\";s:4:\"50px\";s:20:\"s99_mobile_img_width\";s:0:\"\";}','yes'),(7048,'ht_ctc_one_time','a:2:{s:13:\"first_version\";s:4:\"3.30\";s:18:\"first_install_time\";i:1697265602;}','yes'),(7060,'ht_ctc_greetings_options','a:1:{s:15:\"fallback_values\";s:3:\"yes\";}','yes'),(7062,'ht_ctc_admin_pages','a:1:{s:5:\"count\";i:2;}','yes'),(7142,'jetpack_site_icon_url','https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/cropped-7776956.jpg','yes'),(8691,'wp_attachment_pages_enabled','1','yes'),(8692,'db_upgraded','','yes'),(9698,'ht_ctc_notices','a:2:{s:7:\"version\";s:6:\"3.30.1\";s:10:\"pro_banner\";i:1700968157;}','yes'),(9705,'can_compress_scripts','0','yes'),(9740,'staging_config','a:5:{s:13:\"creation_date\";s:12:\"Nov 26, 2023\";s:14:\"production_dir\";s:50:\"/home3/websitex/public_html/healthyfoodrestaurant/\";s:14:\"production_url\";s:32:\"https://healthyfoodrestaurant.in\";s:11:\"staging_dir\";s:62:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871\";s:11:\"staging_url\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}','yes'),(9745,'staging_environment','staging','yes'),(9768,'_transient_timeout_dirsize_cache','2016412425','no'),(9769,'_transient_dirsize_cache','a:18:{s:76:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023/09\";i:0;s:73:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads/2023\";i:0;s:68:\"/home3/websitex/public_html/healthyfoodrestaurant/wp-content/uploads\";i:0;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021/07\";i:9803274;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021/08\";i:526509;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021/03\";i:631782;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021/11\";i:19849198;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021/02\";i:107279149;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2021\";i:138089912;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2023/09\";i:9567620;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2023/10\";i:1685408;s:89:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2023/11\";i:0;s:86:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/2023\";i:11253028;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/wpcf7_uploads\";i:152;s:100:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/demo-importer-plus\";i:70364;s:95:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/elementor/css\";i:0;s:91:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads/elementor\";i:0;s:81:\"/home3/websitex/public_html/healthyfoodrestaurant/staging/3871/wp-content/uploads\";i:149413456;}','no'),(9783,'jetpack_sync_error_idc','a:8:{s:4:\"home\";s:38:\"healthyfoodrestaurant.in/staging/3871/\";s:7:\"siteurl\";s:38:\"healthyfoodrestaurant.in/staging/3871/\";s:10:\"error_code\";s:20:\"jetpack_url_mismatch\";s:15:\"request_siteurl\";s:38:\"healthyfoodrestaurant.in/staging/3871/\";s:12:\"request_home\";s:38:\"healthyfoodrestaurant.in/staging/3871/\";s:13:\"wpcom_siteurl\";s:25:\"/ni.tnaruatserdoofyhtlaeh\";s:10:\"wpcom_home\";s:25:\"/ni.tnaruatserdoofyhtlaeh\";s:12:\"reversed_url\";b:1;}','yes'),(9965,'elementor_elementor_updater_completed','1','yes'),(10032,'elementor_1_elementor_updater_batch_898f2faefb1c8e084d9c77b5c8db','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(10642,'_transient_timeout_rishi--update-response','3410939474','no'),(10643,'_transient_rishi--update-response','O:8:\"stdClass\":12:{s:11:\"new_version\";s:5:\"1.2.2\";s:14:\"stable_version\";s:5:\"1.2.2\";s:4:\"name\";s:5:\"Rishi\";s:4:\"slug\";s:5:\"rishi\";s:3:\"url\";s:51:\"https://rishitheme.com/downloads/rishi/?changelog=1\";s:12:\"last_updated\";s:19:\"2023-06-29 06:17:29\";s:8:\"homepage\";s:39:\"https://rishitheme.com/downloads/rishi/\";s:7:\"package\";s:159:\"https://rishitheme.com/edd-sl/package_download/MTcwNTcyODAzNzo3Nzg2ZTM0N2U5ZmQyZmZjOTM4YmU3ZWQ3MjI4ZmM5OToxMTk1OjBiZTEzYjlkMDA2NTA0MGEyZjIyNjRmNTExNGUxNzVmOjow\";s:13:\"download_link\";s:159:\"https://rishitheme.com/edd-sl/package_download/MTcwNTcyODAzNzo3Nzg2ZTM0N2U5ZmQyZmZjOTM4YmU3ZWQ3MjI4ZmM5OToxMTk1OjBiZTEzYjlkMDA2NTA0MGEyZjIyNjRmNTExNGUxNzVmOjow\";s:8:\"sections\";a:2:{s:11:\"description\";s:0:\"\";s:9:\"changelog\";s:8037:\"<p>== Changelog ==</p>\n<p>1.2.2 : 2023-06-29<br />\n* Update: Added compatibility for WooCommerce version 7.8.0<br />\n* Fix: Design refinements have been done in sidebar list widget.<br />\n* Fix: Issue with image block center alignment has been fixed.<br />\n* Fix: Minor design refinement in SVG has been done.<br />\n* Fix: Issue of product image not showing in Header Cart Element has been fixed.<br />\n* Fix: Design refinement for WooCommerce Cart and Shop page button has been done.</p>\n<p>1.2.1 : 2023-03-07<br />\n* Update: Added compatibility for WooCommerce version 7.4.1</p>\n<p>1.2.0 : 2023-02-03<br />\n* Fix: Blog page design issue in excerpt and image is fixed<br />\n* Fix: Footer design issue is fixed<br />\n* Fix: WooCommerce header cart design issue is fixed<br />\n* Fix: Alignment and gallery issue in the backend editor have been fixed<br />\n* Fix: Breadcrumb design is fixed in the single products<br />\n* Fix: Minor design fix is done for color picker in the customizer</p>\n<p>1.1.9 : 2022-11-24<br />\n* Update: Minor bug fixes and refinements.</p>\n<p>1.1.8 : 2022-11-03<br />\n* Fix: Content wordbreak issue is fixed.</p>\n<p>1.1.7 : 2022-10-21<br />\n* Fix: Multiple Author social link issue is fixed.<br />\n* Fix: Image size of Author Gravatar is fixed.<br />\n* Fix: Removed empty div tag in single page/post.<br />\n* Fix: Image alignment issue is fixed.<br />\n* Fix: Padding of breadcrumb in archive pages is fixed.</p>\n<p>1.1.6 : 2022-07-28<br />\n- New Feature: Image Scale option is added for Featured Image setting.<br />\n- Update: Made single post compatible with Page Break block.<br />\n- Update: Minor bug fixes and refinements.<br />\n- Fix: Upsell product design issue fixed.</p>\n<p>1.1.5: 2022-05-30<br />\n- New Feature: A new Header Element Time is added to display local time.<br />\n- New Feature: A new Header Element Date is added to display current date.<br />\n- New Feature: A new Header Element Image is added to display image.<br />\n- New Feature: A new Header Element Random Posts is added to redirect random posts on click.<br />\n- New Feature: A feature is added to show featured image credit.<br />\n- Update: Added feature to enable or disable Schema.<br />\n- Update: Added feature to select typography for Header Element Trigger.<br />\n- Fix: String translation issue of posts pagination is fixed.<br />\n- Fix: Partial refresh of Header Element Trigger is fixed.<br />\n- Fix: Offcanvas menu alignment issue is fixed.</p>\n<p>1.1.4: 2022-04-18<br />\n- Update: Minor bug fixes and refinements.</p>\n<p>1.1.3: 2022-04-05<br />\n- New Feature: The theme is now accessibility-ready.<br />\n- New Feature: The theme has been made compatible for LearnDash, Tutor LMS and Lifter LMS.<br />\n- New Feature: A new setting is added to enable/disable breadcrumb in Author page.<br />\n- New Feature: The typography setting for the buttons is added.<br />\n- New Feature: A setting to customize the label of the button in the 404 page is added.<br />\n- Update: The featured image is now clickable and links to the blog post.<br />\n- Update: Google Fonts library is updated and now includes more than 1350 fonts.<br />\n- Update: RTL language support is added for WooCommerce.<br />\n- Fix: String translation issue shown by Theme Sniffer is fixed.<br />\n- Fix: The issue of margin not working in the Header Contact element is fixed.<br />\n- Fix: The typography issue for the HTML element in the header is fixed.<br />\n- Fix: The issue of Color Palette 8 not working in Elementor is fixed.<br />\n- Fix: The Partial refresh issue of search page label is fixed.<br />\n- Fix: The featured image original aspect ratio for single post and page is fixed.</p>\n<p>1.1.2: 2022-02-24<br />\n- New Feature: Added Page title feature in blog page.<br />\n- Fix: Infinite scroll issue.<br />\n- Fix: Header cart partial refresh issue.<br />\n- Fix: Category block style issue.<br />\n- Update: Added Rishi Pro and Rishi Companion plugin compatible.<br />\n- Update: Minor bug fixes and refinement.<br />\n- Update: Video Tutorial links added in Dashboard.<br />\n- Update: Upgrade to Pro feature added in both customizer and Dashboard.</p>\n<p>1.1.1: 2022-01-26<br />\n- Update: Fixed the compatibility issue with 5.9.<br />\n- Update: Some of the typos updated.<br />\n- Update: RTL CSS updated.<br />\n- Update: Optimized and refined the CSS code.<br />\n- Update: Removing description from category style.<br />\n- Fix: Pot file generated again for the Rishi Theme and changed the corrected textdomain.<br />\n- Fix: Trigger design issue fixed.<br />\n- Fix: Fixes for the footer copyright issue and pagination fixes made.<br />\n- Fix: rt-background type issue for mobile fixed.<br />\n- Fix: Submenu toggle fixed for mobile.</p>\n<p>1.1.0: 2022-01-18<br />\n- New Feature: Made Simple Social Sharing add-on compatible with the theme.<br />\n- New Feature: Added Post Reading Time in Post Meta settings.<br />\n- Update: Added H1 heading tag if the logo only selected.<br />\n- Update: New Customizer design for better experience.<br />\n- Update: Added Compatibility with new features of Rishi Companion.<br />\n- Fix: Improved Search Implementation and removed unused JS code.<br />\n- Fix: Fixed the JS issues on the dashboard.</p>\n<p>1.0.7: 2022-01-14<br />\n- Update: Admin Notice added for the minimal requirements criteria for updates of theme and plugins.</p>\n<p>1.0.6: 2021-12-14<br />\n- Update: Remove unwanted JS to reduce the number of requests and improve loading speed.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.5: 2021-12-10<br />\n- New Feature: Added theme updater in free theme.<br />\n- Update: Sticky Header issue fixes.<br />\n- Update: Post navigation design issue fixed.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.4: 2021-12-07<br />\n- New Feature: Custom Category color in single post added.<br />\n- Update: Options hook added.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.3: 2021-12-06<br />\n- New Feature: Search page, author and archive page show count partial refresh added.<br />\n- Fix: Added dependencies for wp-i18n.<br />\n- Fix: Archive search show count default changed to false.<br />\n- Update: Updated button svg in Header Builder.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.2: 2021-11-24<br />\n- New Feature: Roadmap added in the Rishi Dashboard.<br />\n- New Feature: Global Color Palette added in the theme.<br />\n- New Feature: Elementor compatibility for Global Color Palatte.<br />\n- New Feature: Styling options for Links in a Single post.<br />\n- Fix: Sticky header and transparent header color issues are fixed.<br />\n- Fix: Gutenberg Editor width is made dynamic based on Container Width settings.<br />\n- Fix: Buttons styling in Editor is fixed and will inherit settings set in Button settings.<br />\n- Update: Optimized and refined the CSS code.</p>\n<p>1.0.1: 2021-09-24<br />\n- New Feature: Contact Widget added that allows to display contact information in header and footer.<br />\n- New Feature: Added filter for License Block.<br />\n- New Feature: Customizer preview set link added in overall theme.<br />\n- New Feature: Added White label compatible feature on companion plugin.<br />\n- New Feature: Infinite Scroll added in the WooCommerce Shop Page.<br />\n- New Feature: Added MultiSelect Customizer Control.<br />\n- Fix: Search result fixes in the frontend.<br />\n- Fix: Typography issues were corrected for the frontend.<br />\n- Fix: Support added for the Block Widget.<br />\n- Update: Optimized CSS and reduced its size to improve the loading speed.<br />\n- Update: Optimized JS and reduced its size to improve the loading speed.<br />\n- Update: Compatible with demo importer plus compatibility -for the free version.<br />\n- Update: Typos were corrected in overall theme.<br />\n- Update: Solved Post/Page Settings on the individual singular posts/pages.<br />\n- Update: Lazyload fixes for the Free Theme.<br />\n- Update: Pot File updated for JS Strings as well.</p>\n<p>1.0.0: 2021-08-25<br />\n- New Feature: Initial Release.</p>\n\";}s:7:\"banners\";s:41:\"a:2:{s:4:\"high\";s:0:\"\";s:3:\"low\";s:0:\"\";}\";s:5:\"icons\";s:6:\"a:0:{}\";}','no'),(10644,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1710815189;s:7:\"checked\";a:6:{s:5:\"rishi\";s:5:\"1.2.2\";s:7:\"sinatra\";s:3:\"1.3\";s:16:\"twentytwentyfour\";s:3:\"1.0\";s:15:\"twentytwentyone\";s:3:\"2.1\";s:17:\"twentytwentythree\";s:3:\"1.3\";s:15:\"twentytwentytwo\";s:3:\"1.6\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:5:{s:7:\"sinatra\";a:6:{s:5:\"theme\";s:7:\"sinatra\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:37:\"https://wordpress.org/themes/sinatra/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/sinatra.1.3.zip\";s:8:\"requires\";s:3:\"5.0\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.0.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.2.1.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.3.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.6.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:12:\"translations\";a:0:{}}','no'),(10687,'nfd_coming_soon_module_version','1.1.17','yes'),(10879,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.4.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.4.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.4.3-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"6.4.3\";s:11:\"php_version\";s:5:\"7.0.0\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.4\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1710815188;s:15:\"version_checked\";s:5:\"6.4.3\";s:12:\"translations\";a:0:{}}','no'),(11209,'_transient_timeout_jetpack_file_data_13.1.3','1711328611','no'),(11210,'_transient_jetpack_file_data_13.1.3','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(11344,'_transient_timeout_jetpack_file_data_13.2','1712276753','no'),(11345,'_transient_jetpack_file_data_13.2','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(11363,'jetpack_affiliate_code','86241','yes'),(11467,'elementor_pro_remote_info_api_data_3.14.1','a:2:{s:7:\"timeout\";i:1710502683;s:5:\"value\";s:215706:\"{\"stable_version\":\"3.20.0\",\"last_updated\":\"2022-05-10 14:03:37\",\"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:201289:\\\"<h2>Elementor Pro - by Elementor.com<\\/h2>\\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: Missing CSS stylesheet in Loop Item template [ED-13534] (#3555)<\\/li>\\n<li>Tweak: AI - Remove AI icon from irrelevant places [ED-13430] (#3559)<\\/li>\\n<\\/ul>\\n<h4>3.19.0 - 2024-01-29<\\/h4>\\n<ul>\\n<li>Tweak: Add to the File Upload field the option to upload a file as an attachment [ED-2192] (#3072)<\\/li>\\n<li>Fix: Fix name for global widget repackaging [ED-12746] (#3228)<\\/li>\\n<li>Tweak: Added styling option for the dropdown indicator in the new menu widget [ED-11085] (#3224)<\\/li>\\n<li>Fix: Taxonomy + Loop grid AJAX pagination fix [ED-12380] (#3231)<\\/li>\\n<li>Fix: Form not submitting when File Upload field is added on PHP 8.1+ [ED-12761] (#3236)<\\/li>\\n<li>Fix: Form Telephone field placeholder RTL problem [ED-12689] (#3230)<\\/li>\\n<li>Fix: Incorrect position of the dropdown content when applying entrance animation [ED-12122] (#3256)<\\/li>\\n<li>Fix: Second Pro rollback installs the latest version [ED-10534] (#3268)<\\/li>\\n<li>Revert Display Conditions b89c355bf498c9f8a5ccdcd184ba3c5266f44bf8 (#3284)<\\/li>\\n<li>Fix: Dynamic Background isn\'t displayed in combination with Ajax Pagination [ED-12977] (#3296)<\\/li>\\n<li>Fix: UX issues when using menu and in-place editing [ED-12131] (#3270)<\\/li>\\n<li>Fix: Notes still appear in Admin Bar when turned off [ED-13019] (#3306)<\\/li>\\n<li>Fix: Taxonomy filter no results when reload with deep link and de-selecting terms [ED-12963] (#3291)<\\/li>\\n<li>Fix: Page Reload pagination doesn\'t work - Grid + Taxonomy filter + archive template [ED-12790] (#3304)<\\/li>\\n<li>Fix: Elementor v3.18 Incompatibility issue with PHP 8.1 or 8.2 [ED-13044] (#3325)<\\/li>\\n<li>Tweak: Use CSS logical properties in Reviews widget [ED-11580] (#2871)<\\/li>\\n<li>Fix: Dynamic Background Image does not load on the first Loop Item in a Loop Grid [ED-12415] (#3315)<\\/li>\\n<li>Tweak: Use CSS logical properties in Nav Menu widget [ED-10986] (#2780)<\\/li>\\n<li>New: Added Akismet integration to Forms widget [ED-12997] (#3300)<\\/li>\\n<li>Tweak: Removed ai buttons from some controls [ED-13123] (#3355)<\\/li>\\n<li>Fix: History panel deprecation notices in console log [ED-10226] (#3351)<\\/li>\\n<li>Tweak: Added additional units everywhere [ED-13118] (#3354)<\\/li>\\n<li>Fix: Display Conditions build icons issue [ED-13098] (#3359)<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature [ED-12797] (#3373)<\\/li>\\n<li>Fix: Button styles in Flip Box widget appear when deactivated [ED-8694] (#3374)<\\/li>\\n<li>Fix: Hide Countdown Label style controls when labels are hidden [ED-2414] (#3376)<\\/li>\\n<li>Fix: Login widget, Logged in Message Style appears even the field is hidden [ED-2388] (#3377)<\\/li>\\n<li>New: Added Permissions functionality to Element Manager [ED-13115] (#3399)<\\/li>\\n<li>Tweak: Menu feature promoted to beta status [ED-13291] (#3406)<\\/li>\\n<li>Tweak: Optimized DOM Output feature merged to version CP [ED-13290] (#3409)<\\/li>\\n<li>Fix: Add placeholder to DC text input [ED-13331] (#3441)<\\/li>\\n<li>Fix: Display Conditions fixes [ED-13360] (#3460)<\\/li>\\n<li>Fix: Fix current day test beta [ED-13392] (#3465)<\\/li>\\n<li>Fix: Loop Builder - Deprecated message on PHP 8.2 in Loop Grid widget [ED-13348] (#3479)<\\/li>\\n<li>Fix: Remove default value from current day condition [ED-13429] (#3486)<\\/li>\\n<li>Fix: WooCommerce test fail [ED-13444] (#3510)<\\/li>\\n<li>Fix: Email being sent to mail even when marked as spam with Akismet integration [ED-13361] (#3511)<\\/li>\\n<li>Fix: Page name special character are escaped on Display Condition [ED-13441] (#3506)<\\/li>\\n<li>Fix: \'WooCommerce notices\' [ED-13218] (#3520)<\\/li>\\n<\\/ul>\\n<h4>3.18.3 - 2024-01-17<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<li>Fix: Improved code security enforcement in Countdown widget<\\/li>\\n<li>Fix: Kit is not being deleted when using Remove Kit feature<\\/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 \'self-hosted\' source in Video widget<\\/li>\\n<li>Fix: Telephone field placeholder is aligned to the left in RTL websites in Form widget<\\/li>\\n<\\/ul>\\n<h4>3.17.1 - 2023-11-01<\\/h4>\\n<ul>\\n<li>Modified controls sanitization to enforce better security policies in Code Highlight, Form, Lottie, Price List, and Video Playlist widgets<\\/li>\\n<\\/ul>\\n<h4>3.17.0 - 2023-10-25<\\/h4>\\n<ul>\\n<li>Tweak: Added AJAX pagination option or seamless page navigation between content in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>)<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Post widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Introduced Individual Pagination option when multiple Loop Grid widgets are on the same page, providing enhanced control over pagination<\\/li>\\n<li>Tweak: Added a None option to the breakpoint options in Menu widget<\\/li>\\n<li>Tweak: Added a horizontal scrolling option in Menu widget<\\/li>\\n<li>Tweak: Upgraded minimum required PHP version to 7.3<\\/li>\\n<li>Tweak: Improved accessibility when minimize button is disabled in Table of Content widget<\\/li>\\n<li>Fix: Table of Content widget without icons displays <code>undefined<\\/code> error (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17523\\\">#17523<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17768\\\">#17768<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18463\\\">#18463<\\/a>)<\\/li>\\n<li>Fix: Hover behavior issues on menu items in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23430\\\">#23430<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22431\\\">#22431<\\/a>)<\\/li>\\n<li>Fix: Links inside Loop Carousel are not working on initial load in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23705\\\">#23705<\\/a>)<\\/li>\\n<li>Fix: Popups accessible navigation adds outlines to the wrong first focusable element<\\/li>\\n<li>Fix: Dropdown area aligned to the left side of the screen if contains Tabs widget in Menu widget<\\/li>\\n<li>Fix: Content horizontal position not aligning correctly when used with carousel widgets in Menu widget<\\/li>\\n<li>Fix: Accessibility errors in PageSpeed Insights in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.16.2 - 2023-09-20<\\/h4>\\n<ul>\\n<li>Fix: Fit to Content dropdown position calculation is incorrect in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23808\\\">#23808<\\/a>)<\\/li>\\n<li>Fix: Reverted hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23804\\\">#23804<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.16.1 - 2023-09-14<\\/h4>\\n<ul>\\n<li>Fix: Dynamic tag for ACF image field is not working as expected (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23757\\\">#23757<\\/a>)<\\/li>\\n<li>Fix: Sticky functionality affects padding values in Container (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23758\\\">#23758<\\/a>)<\\/li>\\n<li>Fix: HTML list issues for padding and margin in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.16.0 - 2023-09-12<\\/h4>\\n<ul>\\n<li>Tweak: Implemented accessibility improvements in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23607\\\">#23607<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22554\\\">#22554<\\/a>)<\\/li>\\n<li>Fix: \'Fallback: Recent Posts\' option malfunctions in the Query control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21436\\\">#21436<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23259\\\">#23259<\\/a>)<\\/li>\\n<li>Tweak: Hide navigation arrows when there is only one slide in the Loop or Nested carousel (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22056\\\">#22056<\\/a>)<\\/li>\\n<li>Tweak: Used appropriate image <code>alt<\\/code> in Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17680\\\">#17680<\\/a>)<\\/li>\\n<li>Tweak: Optimized Scroll Snap functionality when using Container widget<\\/li>\\n<li>Tweak: Enhanced Elementor Role Manager functionality when using Containers<\\/li>\\n<li>Tweak: Added Notes feature to the Editor Top Bar<\\/li>\\n<li>Tweak: Replace CSS <code>float<\\/code> with other layouts in the Editor<\\/li>\\n<li>Tweak: Upgraded HTML Structure for the Menu widget<\\/li>\\n<li>Tweak: Implemented CSS logical properties in Carousel and Menu widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to a link in Posts widget<\\/li>\\n<li>Tweak: Loop Builder feature merged to version<\\/li>\\n<li>Fix: Addressed inconsistency in hover effect durations between icon, dropdown indicator colors, and text colors in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22376\\\">#22376<\\/a>)<\\/li>\\n<li>Fix: Slides break if the parent container is set to HTML A tag in Loop Carousel and Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22678\\\">#22678<\\/a>)<\\/li>\\n<li>Fix: The icon size setting is not affecting uploaded SVG icons in the Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22372\\\">#22372<\\/a>)<\\/li>\\n<li>Fix: Taxonomy filter does not work with slug in foreign characters (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/23315\\\">#23315<\\/a>)<\\/li>\\n<li>Fix: Improved code security enforcement in Dynamic Tags<\\/li>\\n<li>Fix: Sticky container incorrectly adjusts its width when transitioning from a smaller breakpoint to a larger one within the Editor<\\/li>\\n<\\/ul>\\n<h4>3.15.1 - 2023-08-09<\\/h4>\\n<ul>\\n<li>Fix: Improved code security enforcement in Table of Contents widget<\\/li>\\n<\\/ul>\\n<h4>3.15.0 - 2023-07-31<\\/h4>\\n<ul>\\n<li>New: Introducing Taxonomy Filter widget - Empower visitors to seamlessly filter listings in Loop Grids based on taxonomies (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/3140\\\">#3140<\\/a>)<\\/li>\\n<li>Tweak: Added an &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\'t work as expected when Additional Custom Breakpoints feature is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16819\\\">#16819<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19394\\\">#19394<\\/a>)<\\/li>\\n<li>Fix: Inner containers are not presented as expected in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21813\\\">#21813<\\/a>)<\\/li>\\n<li>Fix: Popup width does not support percentages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22413\\\">#22413<\\/a>)<\\/li>\\n<li>Fix: PHP 8.x throws errors when using WooCommerce Ajax response (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22199\\\">#22199<\\/a>)<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22789\\\">#22789<\\/a>)<\\/li>\\n<li>Fix: Order by Price doesn\'t work for the Latest products or Manual Selection in Products widget<\\/li>\\n<li>Fix: Dropdown indicator icon is not vertically aligned to the text when using icon in Menu Widget<\\/li>\\n<li>Fix: Mixed content warning in the console for Video Playlist widget<\\/li>\\n<li>Fix: Preview settings are not presented as expected after first save in Loop Template<\\/li>\\n<li>Fix: Not-crawlable link error in Video Playlist widget<\\/li>\\n<li>Fix: Lightbox is still enabled after disabling it in the Site Settings in Logo widget<\\/li>\\n<li>Fix: Focus state issue on page load when using Table of Content widget<\\/li>\\n<\\/ul>\\n<h4>3.13.2 - 2023-05-22<\\/h4>\\n<ul>\\n<li>Fix: Hover settings not working as expected on Touch-Enabled devices in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22258\\\">#22258<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.1 - 2023-05-11<\\/h4>\\n<ul>\\n<li>Security Fix: Addressed security weaknesses in access management related functions<\\/li>\\n<li>Fix: Excerpt content pulled from post content is showing with HTML tags in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22367\\\">#22367<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.13.0 - 2023-05-08<\\/h4>\\n<ul>\\n<li>Tweak: Provided an option to assign excerpt automatically from post content in Post Excerpt dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20256\\\">#20256<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21715\\\">#21715<\\/a>)<\\/li>\\n<li>Tweak: Added Display Conditions functionality in Editor Top bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21675\\\">#21675<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/22050\\\">#22050<\\/a>)<\\/li>\\n<li>Tweak: Removed <code>elementor_page_id<\\/code> from request URLs in the WC AJAX calls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18675\\\">#18675<\\/a>)<\\/li>\\n<li>Tweak: Added icons to menu items in Mega Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/21602\\\">#21602<\\/a>)<\\/li>\\n<li>Tweak: Added keyboard accessibility to Toggle Button in WordPress Menu widget (<a href=\\\"https:\\/\\/github.com\\/orgs\\/elementor\\/discussions\\/2348\\\">#2348<\\/a>)<\\/li>\\n<li>Tweak: Added \'Active item state\' to top-level menu items for anchor links in the Menu widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Loop Carousel widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Slides widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to navigation arrows in Media, Testimonial and Reviews Carousel widgets<\\/li>\\n<li>Tweak: Added keyboard accessibility to Table of Content widget<\\/li>\\n<li>Tweak: Added keyboard accessibility to Search Form widget<\\/li>\\n<li>Tweak: Added accessibility to images in Slides widget<\\/li>\\n<li>Tweak: Added accessibility to images in Call To Action widget<\\/li>\\n<li>Tweak: Added accessibility to images in Media Carousel widget<\\/li>\\n<li>Tweak: Added accessibility to images in Gallery widget<\\/li>\\n<li>Tweak: Added Lazy Load support for avatar image in Post Info widget<\\/li>\\n<li>Tweak: Added Lazy Load support to various Elementor Editor and Admin images<\\/li>\\n<li>Tweak: Added Lazy Load support for author image in Author Box widget<\\/li>\\n<li>Tweak: Added Lazy Load support for images in Price List widget<\\/li>\\n<li>Fix: Content width is affected by the widget\'s width when Content Width is set to Fit to Content in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21842\\\">#21842<\\/a>)<\\/li>\\n<li>Fix: Empty value on Rows field causes an error in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21451\\\">#21451<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.3 - 2023-04-23<\\/h4>\\n<ul>\\n<li>Fix: Document is not loading after assigning a CSS ID value to a menu item in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21934\\\">#21934<\\/a>)<\\/li>\\n<li>Fix: Elementor CLI causes conflicts with other CLI commands when using PHP 8+ (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21582\\\">#21582<\\/a>)<\\/li>\\n<li>Fix: Dropdown content area is not working as expected with Space Between and Margins in Menu widget<\\/li>\\n<li>Fix: Reverted the option to set a custom icon to Remove Item in Menu Cart widget<\\/li>\\n<li>Fix: Mini cart template appears as empty in various scenarios in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.12.2 - 2023-04-09<\\/h4>\\n<ul>\\n<li>Fix: Mini cart template appears as empty in various WordPress themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21836\\\">#21836<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.12.1 - 2023-04-02<\\/h4>\\n<ul>\\n<li>Fix: Default background colors are presented as transparent in Popup (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21824\\\">#21824<\\/a>)<\\/li>\\n<li>Fix: Reverted the tweak of Form Submissions feature merged to the version (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21821\\\">#21821<\\/a>)<\\/li>\\n<li>Fix: Dropdown area is not closing when hovering outside of the content area in Menu widget<\\/li>\\n<\\/ul>\\n<h4>3.12.0 - 2023-03-29<\\/h4>\\n<ul>\\n<li>New: Introducing the Mega Menu with the new Menu widget - empowers you to achieve a much higher level of menu design, customization, and creativity<\\/li>\\n<li>New: Diversify your design with a Loop Alternate template - apply another template within your Loop Grid for design creativity<\\/li>\\n<li>New: Kickstart your workflow with predesigned Loop container-based templates<\\/li>\\n<li>Tweak: Added custom icon controls to various locations in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13678\\\">#13678<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17941\\\">#17941<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19295\\\">#19295<\\/a>)<\\/li>\\n<li>Tweak: Added a spacing control between navigation and slides in the Loop Carousel<\\/li>\\n<li>Tweak: Added responsive control to the \'Gap between slides\' control in the Loop Carousel<\\/li>\\n<li>Tweak: Added Custom CSS section in Loop Item template<\\/li>\\n<li>Tweak: Added an Article class metadata in Loop Item template<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in CTA widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added Lazy Load support for background images in Flipbox widget when using the Lazy Load Background Images experiment<\\/li>\\n<li>Tweak: Added additional size units and custom units in all elements<\\/li>\\n<li>Tweak: Changed Nav Menu widget name to WordPress Menu widget<\\/li>\\n<li>Tweak: Added &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 from the Loop Carousel becomes inaccessible in some cases ([#21316]<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/21316<\\/a>)<\\/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\' backgrounds disappear when using Lazy Load Background Images experiment<\\/li>\\n<\\/ul>\\n<h4>3.9.1 - 2022-12-14<\\/h4>\\n<ul>\\n<li>Fix: WooCommerce Product Gallery dynamic tag is not working in Basic Gallery, Gallery and Image Carousel widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20678\\\">#20678<\\/a>)<\\/li>\\n<li>Fix: Hide Empty option is not working in Menu Cart widget<\\/li>\\n<li>Fix: The Stripe Button widget doesn\'t work in Templates<\\/li>\\n<\\/ul>\\n<h4>3.9.0 - 2022-12-06<\\/h4>\\n<ul>\\n<li>New: Added support for WooCommerce to Loop Builder (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20020\\\">#20020<\\/a>)<\\/li>\\n<li>Tweak: Added more options to \'Show up to X times\' advanced rule in Popups (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8187\\\">#8187<\\/a>)<\\/li>\\n<li>Tweak: Allow saving and reloading a page while editing in-place loop item template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19882\\\">#19882<\\/a>)<\\/li>\\n<li>Tweak: Added <code>$location param<\\/code> to <code>elementor\\/theme\\/get_location_templates\\/template_id<\\/code> hook (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18453\\\">#18453<\\/a>)<\\/li>\\n<li>Tweak: Removed redundant labels from group controls (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11666\\\">#11666<\\/a>)<\\/li>\\n<li>Tweak: Added support to use sections and columns as the layout structure of a Loop item template<\\/li>\\n<li>Tweak: Disabled movement when a repeater item is in focus in edit mode<\\/li>\\n<li>Tweak: Upgrade the autoprefixer package to better minify CSS files<\\/li>\\n<li>Tweak: Removed duplicate SQL queries on every page for better performance<\\/li>\\n<li>Tweak: Improved License validation mechanism to avoid limitations<\\/li>\\n<li>Tweak: Added more units options to Border Width control in various elements<\\/li>\\n<li>Tweak: Added <code>em<\\/code> units to Border Radius control in various elements<\\/li>\\n<li>Tweak: Added \'Equal height\' functionality to Loop Grid widget<\\/li>\\n<li>Fix: Issue with Related Products widget and WooCommerce Pixel Manager plugin (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16934\\\">#16934<\\/a>)<\\/li>\\n<li>Fix: My Account widget gets hidden when using a single page template with post content (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19627\\\">#19627<\\/a>)<\\/li>\\n<li>Fix: Cart is not updated when cache enabled in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19312\\\">#19312<\\/a>)<\\/li>\\n<li>Fix: Entrance animations are not working as expected with Infinite Loop and Load on CLick pagination in Loop Grid widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/20293\\\">#20293<\\/a>)<\\/li>\\n<li>Fix: Loading page issues in Form Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19973\\\">#19973<\\/a>)<\\/li>\\n<li>Fix: Recently Edited date and time not working as expected in Elementor Overview plugin in WordPress dashboard (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17966\\\">#17966<\\/a>)<\\/li>\\n<li>Fix: Recurring license mismatch error message when using translators plugins<\\/li>\\n<li>Fix: Submenu items triggers page transition instead of opening in Nav Menu widget<\\/li>\\n<li>Fix: Query values of Posts widget are not imported correctly when importing a Kit<\\/li>\\n<li>Fix: Loop items are exceeding the widget boundaries in Loop Grid widget<\\/li>\\n<li>Fix: Order by option is not working as expected when choosing Upsells, Cross-Sells and Related Products query in Products widget<\\/li>\\n<li>Fix: Various widgets disappear in certain scenarios when choosing direction Row or Column in Container<\\/li>\\n<\\/ul>\\n<h4>3.8.2 - 2022-11-21<\\/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-07<\\/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\'s timestamp is being updated according to the last activity in Notes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19123\\\">#19123<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17582\\\">#17582<\\/a>)<\\/li>\\n<li>Fix: Accessibility attribute <code>role=navigation<\\/code> is redundant in pagination in Posts widget<\\/li>\\n<li>Fix: Share buttons is accessible with keyboard but not clickable<\\/li>\\n<li>Fix: Sub-items icons style is missing in preview with Inline Font Icons experiment in Nav Menu widget<\\/li>\\n<li>Fix: Quotes are appearing as HTML when editing a note in Notes<\\/li>\\n<li>Fix: Label\'s Icon height increases when Inline Font Icons experiment is active in Hotspot Widget<\\/li>\\n<li>Fix: Sub conditions of templates are not overridden when importing a Kit<\\/li>\\n<li>Fix: X\\/Y Anchor Point controls were not visible for Scale and Rotate effects<\\/li>\\n<li>Fix: PHP warning notice appears in some situations when using motion effects<\\/li>\\n<\\/ul>\\n<h4>3.7.7 - 2022-09-20<\\/h4>\\n<ul>\\n<li>Fix: Default Flex Grow affects the layout when the container is set to direction Column in various widgets<\\/li>\\n<\\/ul>\\n<h4>3.7.6 - 2022-09-14<\\/h4>\\n<ul>\\n<li>Fix: Submissions menu item appears at the bottom of Elementor section in WordPress dashboard<\\/li>\\n<\\/ul>\\n<h4>3.7.5 - 2022-08-31<\\/h4>\\n<ul>\\n<li>Fix: Error message appears on front if WooCommerce is activated ([#19553] (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/19553\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/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 characher 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\'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\'t send user directly to the widget in the page<\\/li>\\n<li>Fix: Masonry option causes the images to disappear in the Editor in Posts widget<\\/li>\\n<li>Fix: Scrollbar appears after clicking on the dropdown toggle in Nav Menu widget<\\/li>\\n<li>Fix: Custom icons disappear on frontend if the pack name contains numbers<\\/li>\\n<li>Fix: Custom Font disappears if the name contains only numbers<\\/li>\\n<li>Fix: <code>end-section()<\\/code> is missing from Progress Tracker and Facebook Embed widgets<\\/li>\\n<li>Tweak: Added a filter for conditions cache query in Theme Builder<\\/li>\\n<li>Fix: Customizations lost on Ajax refresh in WooCommerce Cart widget<\\/li>\\n<li>Fix: Hello theme Header and Footer experiment is not working when WooCommerce plugin is active<\\/li>\\n<li>Fix: Color controls are not working as expected in Checkout widget<\\/li>\\n<li>Fix: Color controls are not working as expected in My Account widget<\\/li>\\n<li>Fix: Empty state widget preview in the editor is disappearing in various widgets<\\/li>\\n<li>Fix: Cart is not updating automatically on mobile in WooCommerce Cart widget<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-7-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.6.5 - 2022-04-12<\\/h4>\\n<ul>\\n<li>Fix: Compatibility issues for several widgets in iOS 14 and macOS 13 devices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18090\\\">#18090<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15910\\\">#15910<\\/a>)<\\/li>\\n<li>Fix: Button Alignment doesn\'t work in Custom Add To Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17810\\\">#17810<\\/a>)<\\/li>\\n<li>Fix: PHP warning is thrown in some cases in PayPal button widget<\\/li>\\n<li>Fix: PHP 8.1 throws errors and notices in some cases<\\/li>\\n<li>Fix: PHP notice was thrown when Kit Import process initiated without display conditions<\\/li>\\n<li>Fix: Create Account button always opens on the Sign Up screen even if the user has an account in Onboarding process<\\/li>\\n<\\/ul>\\n<h4>3.6.4 - 2022-03-15<\\/h4>\\n<ul>\\n<li>Tweak: Kit import dynamic reference support for templates and dynamic tags<\\/li>\\n<li>Tweak: Updated tested up to version tag to <code>3.6.0<\\/code><\\/li>\\n<li>Fix: Sticky caused scrolling issues after clicking an element that expands the page height (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17821\\\">#17821<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17839\\\">#17839<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18069\\\">#18069<\\/a>)<\\/li>\\n<li>Fix: When saving Global widget JS error is being thrown and editor fails to load (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17954\\\">#17954<\\/a>)<\\/li>\\n<li>Fix: Motion effects are missing from Background section under Style tab in Container element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/18063\\\">#18063<\\/a>)<\\/li>\\n<li>Fix: Imported Kit doesn\'t appear in the theme builder after successful import in some cases<\\/li>\\n<li>Fix: Added future Pro support to fix the Cart icon that shifted aside in Menu cart widget<\\/li>\\n<\\/ul>\\n<h4>3.6.3 - 2022-02-28<\\/h4>\\n<ul>\\n<li>Fix: Custom Code display conditions modal is not working (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17865\\\">#17865<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17942\\\">#17942<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17994\\\">#17994<\\/a>)<\\/li>\\n<li>Fix: Share buttons are not accessible for keyboard navigation (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8615\\\">#8615<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.6.2 - 2022-02-14<\\/h4>\\n<ul>\\n<li>Fix: Auto updates mechanism is not working as expected (this version might be also installed automatically)<\\/li>\\n<\\/ul>\\n<h4>3.6.1 - 2022-02-09<\\/h4>\\n<ul>\\n<li>Tweak: Allow connecting via generic source for future feature support<\\/li>\\n<li>Fix: Custom Code doesn\'t work when WooCommerce is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17675\\\">#17675<\\/a>)<\\/li>\\n<li>Fix: Content animation didn\'t work when Improved asset loading experiment is active Slides widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17055\\\">#17055<\\/a>)<\\/li>\\n<li>Fix: PHP warning appears some times when trying to force-check for available updates<\\/li>\\n<li>Fix: Page transitions are being triggered when not needed<\\/li>\\n<li>Fix: Text alignment on Tablet responsive device affects base device in Testimonial Carousel widget<\\/li>\\n<li>Fix: Harden Submissions feature to prevent potential security issues<\\/li>\\n<li>Fix: Page Transitions Icon option Preloader doesn\'t work on frontend<\\/li>\\n<\\/ul>\\n<h4>3.6.0 - 2022-01-31<\\/h4>\\n<ul>\\n<li>New: WooCommerce Purchase Summary widget - Fully customize the content and style of your order summary page (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5756\\\">#5756<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15862\\\">#15862<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices styling on Site Settings - Customize the appearance of WooCommerce notices (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14570\\\">#14570<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15896\\\">#15896<\\/a>)<\\/li>\\n<li>New: WooCommerce Notices widget - Set the position of WooCommerce notices on your shop pages (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8124\\\">#8124<\\/a>)<\\/li>\\n<li>Experiment: Page Transitions - Customize the page loading experience, and increase brand recognition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10576\\\">#10576<\\/a>)<\\/li>\\n<li>Tweak: Added WooCommerce &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\'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\'t work in product page in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5921\\\">#5921<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16276\\\">#16276<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16879\\\">#16879<\\/a>)<\\/li>\\n<li>Fix: Buttons are not visible when there are too many products in the cart in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17283\\\">#17283<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>,<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13005\\\">#13005<\\/a>)<\\/li>\\n<li>Fix: Mini cart modal z-index is too low in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16333\\\">#16333<\\/a>)<\\/li>\\n<li>Fix: Side cart buttons are not visible at first glance on mobile in WooCommerce Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16221\\\">#16221<\\/a>)<\\/li>\\n<li>Fix: Read More field recognizes inline HTML elements as plain text in Posts and Archive Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16985\\\">#16985<\\/a>)<\\/li>\\n<li>Fix: Load More functionality caused JS error console in Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17036\\\">#17036<\\/a>)<\\/li>\\n<li>Fix: Autoplay is not working as expected when the lazy load is active in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15304\\\">#15304<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16274\\\">#16274<\\/a>)<\\/li>\\n<li>Fix: Right navigation area wasn\'t 100% clickable in Post Navigation widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14252\\\">#14252<\\/a>)<\\/li>\\n<li>Fix: Posts duplicate when there are two Posts widgets inside a page using pagination functionality (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/17056\\\">#17056<\\/a>)<\\/li>\\n<li>Fix: Global widget changes are not reflected on frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16820\\\">#16820<\\/a>)<\\/li>\\n<li>Fix: JS Error console message when using the Load More functionality and Post Per Page option in Posts widget<\\/li>\\n<li>Fix: Heading styling is not being loaded when Inline CSS experiment is active in Post and Page Title widgets<\\/li>\\n<li>Fix: Sticky offset not working as expected when changing device mode on the browser<\\/li>\\n<li>Fix: Scroll Snap functionality wasn\'t applied on Templates and Archives<\\/li>\\n<li>Fix: Toggle icon color didn\'t work on hover state when Inline Font Icons experiment is activated in Nav Menu widget<\\/li>\\n<li>Fix: Variations style controls are not working as expected in WooCommerce Add to Cart widget<\\/li>\\n<li>Fix: Display conditions module is not working as expected when using the new Theme Builder UI<\\/li>\\n<li>Fix: Edit header handles <code>z-index<\\/code> issues in Header document<\\/li>\\n<li>Fix: Panel icons UI glitch in Call To Action widget<\\/li>\\n<li>Fix: WordPress 5.9 <code>WP_User_query<\\/code> <code>who<\\/code> argument deprecation adjustments<\\/li>\\n<\\/ul>\\n<h4>3.5.2 - 2021-11-28<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted license mechanism to support trial period<\\/li>\\n<li>Fix: Updates made to Global Widgets do not reflect accordingly to linked widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815\\\">#16815<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle button doesn\'t change to \\u201cclose\\u201d when menu is collapsed in Nav Menu widget when Inline Font Awesome experiment is active<\\/li>\\n<li>Fix: Global Widget cannot be unlinked<\\/li>\\n<\\/ul>\\n<h4>3.5.1 - 2021-11-10<\\/h4>\\n<ul>\\n<li>Fix: Inline HTML elements appear as plain text in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16816\\\">#16816<\\/a>)<\\/li>\\n<li>Fix: Dropdown items inherited values from Main Menu space between control in Nav Menu widget (<a href=\\\"(https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16815)\\\">#16815<\\/a><\\/li>\\n<li>Fix: Order Summary titles style controls not applying on various devices in Cart widget<\\/li>\\n<li>Fix: Panel &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\'s responsive SCSS variables<\\/li>\\n<li>Tweak: Added dividers to horizontal layout in Nav Menu widget<\\/li>\\n<li>Tweak: Removed Google+ social network from Share Buttons widget<\\/li>\\n<li>Tweak: Convert usage of old Responsive class to use the new Breakpoints Manager<\\/li>\\n<li>Fix: jQuery in Heading doesn\'t work for not logged in users in Custom Code (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14515\\\">#14515<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14266\\\">#14266<\\/a>)<\\/li>\\n<li>Fix: Menu animation causing page horizontal scroll in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15184\\\">#15184<\\/a>)<\\/li>\\n<li>Fix: Wrong function call in Table of Content &amp; Post Excerpt widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16547\\\">#16547<\\/a>)<\\/li>\\n<li>Fix: Slides to Scroll control can\'t be set to Default if Widescreen mode has a value in Testimonial Carousel widget<\\/li>\\n<li>Fix: Sticky offset not working properly when changing device mode<\\/li>\\n<li>Fix: UTF character issues when exporting CSV file in Form Submissions<\\/li>\\n<li>Fix: Load More functionality doesn\'t work when the Posts widget placed inside an Archive template<\\/li>\\n<li>Fix: UI glitches and editing issues in Video Playlist widget<\\/li>\\n<\\/ul>\\n<h4>3.4.2 - 2021-10-12<\\/h4>\\n<ul>\\n<li>Fix: Icons color style conflicts when Font-Awesome Inline experiment is active in Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16435\\\">#16435<\\/a>)<\\/li>\\n<li>Fix: Mini Cart hides page content when closed in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16305\\\">#16305<\\/a>)<\\/li>\\n<li>Fix: UI glitches in the Editor edit mode when inserting Post Content widget and Font-Awesome Inline experiment is active in Single Post template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16358\\\">#16358<\\/a>)<\\/li>\\n<li>Fix: Slides per view controls disappeared from multiple breakpoints in Testimonial Carousel<\\/li>\\n<li>Fix: Product variations UI glitch in Menu Cart widget<\\/li>\\n<li>Fix: Buttons UI glitch on Safari browser in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.1 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Fix: Sticky functionality is not working if the Additional Custom Breakpoints experiment is active (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16186\\\">#16186<\\/a>)<\\/li>\\n<li>Fix: Slideshow skin UI glitch in Media Carousel widget<\\/li>\\n<li>Fix: Product price typography weight control is not working as expected in Menu Cart widget<\\/li>\\n<\\/ul>\\n<h4>3.4.0 - 2021-09-01<\\/h4>\\n<ul>\\n<li>Tweak: Added new Mini Cart layout type in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11312\\\">#11312<\\/a>)<\\/li>\\n<li>Tweak: Added styling options for Cart, Products, and Cart buttons in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14952\\\">#14952<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to open cart automatically when an item is added in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14119\\\">#14119<\\/a>)<\\/li>\\n<li>Tweak: Added the ability to remove an item from cart without reloading the page with an AJAX request (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9531\\\">#9531<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10875\\\">#10875<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11309\\\">#11309<\\/a>)<\\/li>\\n<li>Tweak: Added Load More AJAX functionality to Posts widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1284\\\">#1284<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14557\\\">#14557<\\/a>)<\\/li>\\n<li>Tweak: Added Vimeo support to the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15319\\\">#15319<\\/a>)<\\/li>\\n<li>Tweak: Improved asset loading performance by serving lighter JS files (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>)<\\/li>\\n<li>Tweak: Added query string to the URL only after the first video is played in Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15348\\\">#15348<\\/a>)<\\/li>\\n<li>Tweak: Added various layout options with more responsive controls and cart structure options in Menu Cart widget<\\/li>\\n<li>Tweak: Added the option to open the menu cart by click or hover in Menu Cart widget<\\/li>\\n<li>Tweak: Added the ability to choose a specific product to draw data from in WooCommerce Dynamic tags<\\/li>\\n<li>Tweak: Removed auto-scroll to the widget location when arriving from external URL in Video Playlist widget<\\/li>\\n<li>Tweak: Removed the Video Playlist widget from the Experiments list<\\/li>\\n<li>Tweak: Added descriptive error messages for MailChimp action after submit and on form submit in Forms widget<\\/li>\\n<li>Tweak: Added tooltip trigger None and Hover for link in Hotspot widget<\\/li>\\n<li>Tweak: Added responsive controls to Offset and Effects Offset in Sticky options<\\/li>\\n<li>Tweak: Added responsive control to Alignment in Testimonial Carousel widget<\\/li>\\n<li>Tweak: Adjusted Motion Effects module to support future feature<\\/li>\\n<li>Tweak: Added future compatibility to support better loading of <code>eicons<\\/code> font<\\/li>\\n<li>Tweak: Changed Rename Part title and button color in Theme Builder<\\/li>\\n<li>Fix: Products don\'t appear on the cart while editing in Menu Cart widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15451\\\">#15451<\\/a>)<\\/li>\\n<li>Fix: Videos always start muted in the Video Playlist widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15292\\\">#15292<\\/a>)<\\/li>\\n<li>Fix: Unnecessary spacing if submenu indicator is set to None in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15365\\\">#15365<\\/a>)<\\/li>\\n<li>Fix: MailChimp double opt-in feature doesn\'t work in Forms widget<\\/li>\\n<li>Fix: Fetching MailChimp groups field blocks the loading of the rest of the fields in the Form widget<\\/li>\\n<li>Fix: Missing field IDs causes forms not to be sent in Forms widget<\\/li>\\n<li>Fix: Full Content Skin is not working properly when inserted twice on the same page in Posts widget<\\/li>\\n<li>Fix: Avoid Duplicates option doesn\'t exclude manual selections in Posts widget<\\/li>\\n<li>Fix: Submenu indicator alignment issue in Nav menu widget<\\/li>\\n<li>Fix: Query control deprecated message appears when debug mode is defined<\\/li>\\n<li>Fix: Tweet Button icon incorrect color and size when the icon is rendered as SVG in Blockquote widget<\\/li>\\n<li>Fix: Video icon size is not changing on Active state in Video Playlist widget<\\/li>\\n<li>Fix: Header icon color is not working in Table Of Content widget<\\/li>\\n<li>Fix: Icons style glitches when Font Awesome Inline experiment is active in Video Playlist widget<\\/li>\\n<li>Fix: Bullet markers are not visible on preview mode when Font Awesome Inline experiment is active in Table of Content widget<\\/li>\\n<li>Fix: UI Glitch when Font-Awesome Inline experiment is active in Price Table widget<\\/li>\\n<li>Fix: Submenu Indicator appears larger when Font Awesome Inline experiment is active in Nav Menu widget<\\/li>\\n<li>Fix: Part name is deleted when clicking on the &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>ElementorUtils::get_create_new_post_url()<\\/code><\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-4-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>3.3.8 - 2021-08-23<\\/h4>\\n<ul>\\n<li>Fix: Products grid width issue when adjusting columns and rows in Products widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16001\\\">#16001<\\/a>)<\\/li>\\n<li>Fix: Font Awesome Inline experiment causes icons glitch in Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/16045\\\">#16045<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA v3 <code>z-index<\\/code> is lower than the Section\'s background color<\\/li>\\n<li>Fix: Style missing when Font Awesome inline experiment is active in Post Info widget<\\/li>\\n<li>Fix: Font Awesome icons were not loaded in Post Info widget<\\/li>\\n<li>Fix: Zero character can\'t be used as a placeholder in Number field in Form widget<\\/li>\\n<li>Fix: Carousels are not working properly in the Editor when Additional Custom Breakpoints experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.7 - 2021-08-15<\\/h4>\\n<ul>\\n<li>Tweak: Added support for Additional Custom Breakpoints in Nav Menu widget<\\/li>\\n<li>Tweak: Added support for Additional Custom breakpoints in Motion Effects<\\/li>\\n<li>Fix: Columns didn\'t respond to changes in Gallery widget if Additional Custom Breakpoints Experiment is active<\\/li>\\n<\\/ul>\\n<h4>3.3.6 - 2021-08-10<\\/h4>\\n<ul>\\n<li>Tweak: Added support for future feature in Nav Menu widget<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Related widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Upsells widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<li>Fix: WooCommerce responsive grid styles are not being reflected in Product Categories widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15857\\\">#15857<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.5 - 2021-08-01<\\/h4>\\n<ul>\\n<li>Fix: Responsive layout glitches in Products and Products Archive widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15773\\\">#15773<\\/a>)<\\/li>\\n<li>Fix: reCAPTCHA V3 integration conflict with required fields validation in Forms widget<\\/li>\\n<\\/ul>\\n<h4>3.3.4 - 2021-07-21<\\/h4>\\n<ul>\\n<li>Fix: Grid layout glitch in WooCommerce Products Archive widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15718\\\">#15718<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.3.3 - 2021-07-20<\\/h4>\\n<ul>\\n<li>Tweak: Added a descriptive message in Collect Submissions action after submit<\\/li>\\n<li>Tweak: Added future compatibility for Additional Custom Breakpoints for Pro widgets<\\/li>\\n<li>Fix: Some widget style breaks when Improved CSS Loading Experiment is active in certain cases (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15632\\\">#15632<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15683\\\">#15683<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15660\\\">#15660<\\/a>)<\\/li>\\n<li>Fix: Translation update keep appearing as available after install (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14297\\\">#14297<\\/a>)<\\/li>\\n<li>Fix: Wrong default icon color when using Font Awesome icons as inline SVG in Call to Action widget<\\/li>\\n<\\/ul>\\n<h4>3.3.2 - 2021-07-13<\\/h4>\\n<ul>\\n<li>Tweak: Updated plugin description<\\/li>\\n<li>Fix: MailChimp tags in form widget replaced existing tags (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Fix: Clicking videos from the items list in edit mode doesn\\u2019t initiate videos properly<\\/li>\\n<li>Fix: User unauthorized message when activated but not connected in Kit Library<\\/li>\\n<li>Fix: Carousel widgets did not support additional custom breakpoint responsive values<\\/li>\\n<li>Fix: Tab border is overridden by the Section background color in Video Playlist widget<\\/li>\\n<li>Fix: Widgets style breaks when Improved CSS Load experiment is active in a Single Page template and Post Content widget<\\/li>\\n<\\/ul>\\n<h4>3.3.1 - 2021-06-20<\\/h4>\\n<ul>\\n<li>Tweak: Added support for more Theme Builder display conditions in Export \\/ Import experiment<\\/li>\\n<li>Tweak: Adjusted License page heading structure for future feature<\\/li>\\n<li>Tweak: Adjusted Font Awesome icon for allowing support for future feature<\\/li>\\n<li>Fix: <code>frontend.min.js<\\/code> file size increased in Elementor Pro 3.3.0 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/15278\\\">#15278<\\/a>)<\\/li>\\n<li>Fix: Prevent conditions from being reset when object cache is enabled in site (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13299\\\">#13299<\\/a>)<\\/li>\\n<li>Fix: Custom Code publish modal responsiveness issues (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14519\\\">#14519<\\/a>)<\\/li>\\n<li>Fix: Populating fields with options programmatically doesn\'t appear in Submissions screen (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10671\\\">#10671<\\/a>)<\\/li>\\n<li>Fix: Large images are not shown on the Image Carousel widget when set via Toolset dynamic tag<\\/li>\\n<li>Fix: Enable inline editing to the inner content tabs in Video Playlist widget<\\/li>\\n<li>Fix: Clicking on the video list doesn\'t play videos properly in Video Playlist widget<\\/li>\\n<li>Fix: Hide Play Icon control when Image overlay is toggled off in Video Playlist widget<\\/li>\\n<li>Fix: Removed extra space below the player when viewing from mobile view in Video Playlist widget<\\/li>\\n<li>Fix: Import button is not working properly in Theme Builder interface<\\/li>\\n<li>Fix: Preview Dynamic Content as control is not updating preview and throws an error in Popup Builder<\\/li>\\n<\\/ul>\\n<h4>3.3.0 - 2021-06-08<\\/h4>\\n<ul>\\n<li>New: Video Playlist widget - Add Engaging Video Content to Your Website (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11859\\\">#11859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7803\\\">#7803<\\/a>)<\\/li>\\n<li>New: Hotspot widget - Create Interactive Images With Contextually Relevant Information (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7282\\\">#7282<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2768\\\">#2768<\\/a>)<\\/li>\\n<li>Tweak: Accessibility improvements for sub-menus in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13859\\\">#13859<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13810\\\">#13810<\\/a>)<\\/li>\\n<li>Tweak: MailChimp action after submit can now add new tags to existing subscribers in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11111\\\">#11111<\\/a>)<\\/li>\\n<li>Tweak: Added <code>elementor_pro\\/forms\\/record\\/actions_before<\\/code> to filter the record before it sent to Actions After Submit in Forms widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14261\\\">#14261<\\/a>)<\\/li>\\n<li>Tweak: Yoast SEO breadcrumbs widget can be used in Elementor without the need of enabling them in Yoast setting<\\/li>\\n<li>Tweak: Added future support for widgets CSS conditional loading (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10329\\\">#10329<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/14229\\\">#14229<\\/a>)<\\/li>\\n<li>Tweak: Added future support for Sticky JS library conditional loading<\\/li>\\n<li>Tweak: Added future support for Import \\/ Export experiment<\\/li>\\n<li>Tweak: Preparations and fixes for Import Export Experiment in Pro version<\\/li>\\n<li>Tweak: Added gradient button capabilities to Login widget buttons<\\/li>\\n<li>Tweak: Added gradient button capabilities to Slides widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Price Table widget button<\\/li>\\n<li>Tweak: Added gradient button capabilities to Flip Box widget button<\\/li>\\n<li>Tweak: Added Code Highlight widget Developers Documentation<\\/li>\\n<li>Tweak: Adjusted Submissions page for future updates<\\/li>\\n<li>Tweak: Added <code>em<\\/code> and <code>%<\\/code> units for padding control in Carousel widgets<\\/li>\\n<li>Tweak: Shorten currency name to currency symbol in PayPal button widget<\\/li>\\n<li>Fix: Custom Fonts URLs should be replaced when replace URL is triggered (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7376\\\">#7376<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10382\\\">#10382<\\/a>)<\\/li>\\n<li>Fix: The currency symbol size changed in the Price Table widget if enabling sale (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13519\\\">#13519<\\/a>)<\\/li>\\n<li>Fix: Nav Menu widget is not loading Font Awesome submenu icons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9907\\\">#9907<\\/a>)<\\/li>\\n<li>Fix: Hamburger toggle is not working in Nav menu widget<\\/li>\\n<li>Fix: Activation bug for IDN domains<\\/li>\\n<li>Fix: Conditions modal responsive glitches in Custom Code<\\/li>\\n<li>Fix: Duplicated strings in Custom Code module<\\/li>\\n<li>Fix: Enable resize option for code input field in Custom Code<\\/li>\\n<li>Fix: \\u201cSave &amp; Close \\u201cbutton in Custom Code\'s Conditions modal was not visible on small screen sizes<\\/li>\\n<li>Fix: Removing a column from a section in the navigator resulted in an empty section<\\/li>\\n<li>Fix: Recommend option is cut If the layout is not &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\'t indexed properly<\\/li>\\n<\\/ul>\\n<h4>3.2.0 - 2021-03-14<\\/h4>\\n<ul>\\n<li>New: PayPal Button widget - Collect PayPal payments directly from your site<\\/li>\\n<li>Experiment: Submissions - Save all of your form submissions in one place (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1686\\\">#1686<\\/a>)<\\/li>\\n<li>Tweak: Added Stay In Column option to Inner Section element (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7956\\\">#7956<\\/a>)<\\/li>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Tweak: Changed descriptive text in Create Custom Code screen<\\/li>\\n<li>Tweak: Added support for dynamic capabilities in Code Highlight widget<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>share-link<\\/code> library<\\/li>\\n<li>Tweak: Added support for future load on demand for <code>dialog<\\/code> library in Popup<\\/li>\\n<li>Tweak: Allow overwriting the assets URL when using a mirror domain<\\/li>\\n<li>Fix: Animation was triggered multiple times when accessing the viewport in certain cases in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13951\\\">#13951<\\/a>)<\\/li>\\n<li>Fix: Location is not being updated after a Custom Code snippet is published (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13971\\\">#13971<\\/a>)<\\/li>\\n<li>Fix: Custom Fonts CSS files were not updated after regenerating CSS files<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: Empty order buttons are displayed in Custom Fonts screen<\\/li>\\n<li>Fix: Typo in \'Reply To\' Email action after submit placeholder in Forms widget<\\/li>\\n<li>Fix: Unnecessary Save Draft button in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Custom Code<\\/li>\\n<li>Fix: Sanitized options in the editor to enforce better security policies<\\/li>\\n<li>Deprecated: See all deprecations to this version in our (<a href=\\\"https:\\/\\/developers.elementor.com\\/v3-2-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>3.1.1 - 2021-02-23<\\/h4>\\n<ul>\\n<li>Tweak: Adjusted \'Max Height\' control range in Table of Contents widget<\\/li>\\n<li>Fix: Popup event handler is undefined (<a href=\\\"#11475\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11475<\\/a><\\/a>, <a href=\\\"#10690\\\"><a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690\\\">https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10690<\\/a><\\/a>)<\\/li>\\n<li>Fix: Conditions modal is not responsive in Custom Code<\\/li>\\n<li>Fix: RTL glitches in Code Highlight widget<\\/li>\\n<li>Fix: Minor UI glitches in Code Highlight widget<\\/li>\\n<li>Fix: Users can\'t get Pro Developer Edition version updates<\\/li>\\n<\\/ul>\\n<h4>3.1.0 - 2021-02-13<\\/h4>\\n<ul>\\n<li>New: Introducing Custom Code - Add custom code snippets to your site, including <code>head<\\/code>, <code>body<\\/code> start and <code>body<\\/code> end<\\/li>\\n<li>New: Meet Code Highlight widget - showcase any syntax with highlighted UI (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5815\\\">#5815<\\/a>)<\\/li>\\n<li>Experiment: Improved Pro widgets performance by loading JS and Swiper assets conditionally in frontend (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8572\\\">#8572<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/experiment-optimized-asset-loading\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Compatibility Tag support in Elementor Pro (<a href=\\\"https:\\/\\/developers.elementor.com\\/compatibility-tag\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities to Rotating Text animation in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4625\\\">#4625<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added an option to set Selected color for Typing effect in Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5403\\\">#5403<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7826\\\">#7826<\\/a>)<\\/li>\\n<li>Tweak: Added animation Loop option for Animated Headline (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9749\\\">#9749<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2457\\\">#2457<\\/a>)<\\/li>\\n<li>Tweak: Added timing options for Animated Headline widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4392\\\">#4392<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic capabilities for Price Table widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4242\\\">#4242<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8569\\\">#8569<\\/a>)<\\/li>\\n<li>Tweak: Added Word Wrap control to Code Highlight widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/13577\\\">#13577<\\/a>)<\\/li>\\n<li>Tweak: Upgraded Font Awesome Pro library to v5.15.1<\\/li>\\n<li>Tweak: Improved method of loading field mapping repeater in Form widget (<a href=\\\"https:\\/\\/developers.elementor.com\\/how-to-add-a-repeater-control-to-elementor-add-on\\/\\\">Developer Documentation<\\/a>)<\\/li>\\n<li>Tweak: Added &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\'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\'t add linebreaks to Textarea input when used as Multi Step Form<\\/li>\\n<li>Fix: Incorrect width in Facebook Page widget<\\/li>\\n<li>Fix: Added compatibility to allow the use of \'get_create_url\' in Theme Builder<\\/li>\\n<\\/ul>\\n<h4>3.0.4 - 2020-09-09<\\/h4>\\n<ul>\\n<li>Fix: Autogenerated screenshots appear in WP Media Library modal (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12304\\\">#12304<\\/a>)<\\/li>\\n<li>Fix: Make sure Elementor Posts widget Pagination doesn\'t interfere with 3rd party plugins (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Shrinking conditions indicator in Theme Builder<\\/li>\\n<li>Fix: Column can\'t be dragged and dropped if it populates a Global widget<\\/li>\\n<li>Fix: Styles are missing from Single templates in some edge cases<\\/li>\\n<\\/ul>\\n<h4>3.0.3 - 2020-09-02<\\/h4>\\n<ul>\\n<li>Fix: Pagination doesn\'t work in WordPress 5.5 (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12126\\\">#12126<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/12127\\\">#12127<\\/a>)<\\/li>\\n<li>Fix: Change delete template action to &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\'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\'t work properly<\\/li>\\n<li>Fix: Minor UI fixes in Theme Builder<\\/li>\\n<li>Fix: Dark mode glitches in Theme Builder<\\/li>\\n<li>Fix: Global Site Part toaster appears when you publish a Popup<\\/li>\\n<li>Fix: Site Parts aren\'t in the correct order in Theme Builder<\\/li>\\n<li>Fix: Date field caused forms to get corrupted in Forms widget<\\/li>\\n<li>Fix: Theme Builder application page is forbidden<\\/li>\\n<\\/ul>\\n<h4>3.0.0 - 2020-08-23<\\/h4>\\n<ul>\\n<li>New: Introducing the new and improved Theme Builder<\\/li>\\n<li>Tweak: Removed <code>.elementor-inner<\\/code> and <code>.elementor-column-wrap<\\/code> from DOM output to improve performance (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7351\\\">#7351<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7817\\\">#7817<\\/a>, <a href=\\\"https:\\/\\/developers.elementor.com\\/dom-improvements-ahead-html-wrappers-removal-from-v3-0\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added contextual anchors ID support to Table of Contents widgets (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10052\\\">#10052<\\/a>)<\\/li>\\n<li>Tweak: Added WeChat and Weibo social networks to Share Buttons widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11554\\\">#11554<\\/a>)<\\/li>\\n<li>Tweak: Added Dynamic capabilities for Redirect after Login\\/Logout in Login widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11343\\\">#11343<\\/a>)<\\/li>\\n<li>Tweak: Added Blend Mode and CSS Filters controls to adjust the Background Overlay in Flipbox widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11653\\\">#11653<\\/a>)<\\/li>\\n<li>Tweak: Added responsive capabilities to Toggle Button styling in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8269\\\">#8269<\\/a>)<\\/li>\\n<li>Tweak: Added responsive Text Alignment control in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11968\\\">#11968<\\/a>)<\\/li>\\n<li>Tweak: Added dynamic content to Ribbon element in Call to Action widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/10364\\\">#10364<\\/a>)<\\/li>\\n<li>Tweak: Converted uses of Color and Typography Schemes to Global Colors and Fonts<\\/li>\\n<li>Tweak: Separated Title and Description control fields labels in Call to Action widget<\\/li>\\n<li>Tweak: Removed unnecessary style in WC Product with variations<\\/li>\\n<li>Tweak: Converted Portfolio, Posts and Share Buttons widgets to use CSS Variable-based Elementor Grid (<a href=\\\"https:\\/\\/developers.elementor.com\\/elementor-dropping-support-ie\\/\\\">Developers Blog Post<\\/a>)<\\/li>\\n<li>Tweak: Added Date Modified option to Posts widget metadata<\\/li>\\n<li>Fix: PHP 7.4 compatibility to Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11355\\\">#11355<\\/a>)<\\/li>\\n<li>Fix: Divider alignment issue in Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/11628\\\">#11628<\\/a>)<\\/li>\\n<li>Fix: Color doesn\\u2019t change in Products Archive Description widget<\\/li>\\n<li>Fix: WC Product variations layout breaks when using Variation Swatches plugin<\\/li>\\n<li>Fix: WC Product variations layout issue<\\/li>\\n<li>Fix: WC Product variations mobile zoom-in glitch<\\/li>\\n<li>Fix: Can\'t edit a Popup after accessing Theme Style<\\/li>\\n<li>Fix: Twitter icon missing in Blockquote widget<\\/li>\\n<li>Fix: Removed redundant default text color from Share Buttons minimal skin<\\/li>\\n<li>Fix: UI glitch in Display Conditions modal<\\/li>\\n<li>Fix: Insert template button UI glitch in Templates Library<\\/li>\\n<li>Fix: Added sanitization to post titles in WordPress dashboard for better security<\\/li>\\n<li>Fix: Show when arriving from search engines rule doesn\'t work in Popup<\\/li>\\n<li>Fix: Child categories are shown with a different parent category in Query control<\\/li>\\n<li>Deprecated: See all deprecations to this version in our <a href=\\\"https:\\/\\/developers.elementor.com\\/v3-0-planned-deprecations\\/\\\">Developers Deprecations Post<\\/a><\\/li>\\n<\\/ul>\\n<h4>2.10.3 - 2020-06-29<\\/h4>\\n<ul>\\n<li>Fix: Form not being submitted when using &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\'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\'t work on RTL websites in Table of Contents widget<\\/li>\\n<li>Fix: Query Control throws <code>Undefined index: q<\\/code> error<\\/li>\\n<li>Fix: Typography control not affecting dropdown menu in Nav Menu widget<\\/li>\\n<li>Fix: Discord forms integration fails to send submissions in some server configurations<\\/li>\\n<li>Fix: Rotating headlines don\'t align center in Animated Headline widget<\\/li>\\n<li>Fix: Custom secondary color displayed when not needed in Share buttons widget<\\/li>\\n<li>Fix: Motion Effects of certain objects are not functioning properly on Safari browser<\\/li>\\n<li>Fix: Missing eye icon in Single template footer preview button<\\/li>\\n<\\/ul>\\n<h4>2.8.3 - 2020-01-01<\\/h4>\\n<ul>\\n<li>Tweak: Updated Table of Contents widget panel location<\\/li>\\n<li>Fix: ACF URL Dynamic field throws <code>undefined index<\\/code> PHP notice (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/9929\\\">#9929<\\/a>)<\\/li>\\n<li>Fix: Gallery lightbox pagination shows images from all tabs<\\/li>\\n<li>Fix: &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=\\\"navigation\\\"<\\/code> accessibility attributes to Nav Menu widget<\\/li>\\n<li>Tweak: Changed button HTML tag from <code>button<\\/code> to <code>span<\\/code> in Call to Action and Flip Box widgets for better W3C compliance and accessibility<\\/li>\\n<li>Tweak: Removed Google+ from default networks in Share Buttons widget<\\/li>\\n<li>Tweak: Added compatibility for Library Connect<\\/li>\\n<li>Tweak: Added i18n to Toolset date dynamic tag<\\/li>\\n<li>Tweak: Added external link support to Gallery widget<\\/li>\\n<li>Tweak: Changed the link external attributes implementation to use <code>add_link_attributes()<\\/code> in Gallery widget<\\/li>\\n<li>Tweak: Updated references to the new Schemes system location<\\/li>\\n<li>Tweak: Avoid running Gallery handler when the gallery is empty<\\/li>\\n<li>Tweak: UI Tweaks in Editor Panel<\\/li>\\n<li>Tweak: Added responsive capabilities to Pointer Width control in Nav Menu widget<\\/li>\\n<li>Tweak: Added mobile support for responsive controls in Nav Menu widget<\\/li>\\n<li>Tweak: Refactor <code>register_controls()<\\/code> method in Posts widget skin trait<\\/li>\\n<li>Fix: ACF URL &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\'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\'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\'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\'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 \'Hide Title\' is active<\\/li>\\n<li>Tweak: Added style controls for HTML field in Form widget<\\/li>\\n<li>Fix: Form widget Date picker makes the Popup builder disappear (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7240\\\">#7240<\\/a>)<\\/li>\\n<li>Fix: Sticky element stop point stops working on viewport resize (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/7884\\\">#7884<\\/a>)<\\/li>\\n<li>Fix: Copy-Paste style not pasting the Pointer option in Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8497\\\">#8497<\\/a>)<\\/li>\\n<li>Fix: Missing Print icon in Share Buttons (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8506\\\">#8506<\\/a>)<\\/li>\\n<li>Fix: UI style glitch in Blockquote widget when viewing from iPad<\\/li>\\n<li>Deprecated: <code>DB::save_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<li>Deprecated: <code>DB::get_plain_editor()<\\/code> - Remove usage of this method (<a href=\\\"https:\\/\\/developers.elementor.com\\/v2-6-0-planned-deprecations\\/\\\">Deprecation Post<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.14 - 2019-07-14<\\/h4>\\n<ul>\\n<li>Fix: Better WC Related Product grid support to various themes (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8555\\\">#8555<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>2.5.13 - 2019-07-11<\\/h4>\\n<ul>\\n<li>Fix: Better WC grid support to various themes<\\/li>\\n<\\/ul>\\n<h4>2.5.12 - 2019-07-10<\\/h4>\\n<ul>\\n<li>Fix: Grid for WooCommerce Archive Product widget<\\/li>\\n<li>Fix: Remove redundant <code>whitespace<\\/code> CSS property causes style glitch in iPad<\\/li>\\n<li>Tweak: Added more compatibility for Elementor v2.6<\\/li>\\n<\\/ul>\\n<h4>2.5.11 - 2019-07-02<\\/h4>\\n<ul>\\n<li>Fix: Close icon missing from Nav Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8460\\\">#8460<\\/a>)<\\/li>\\n<li>Fix: Elementor Pro v2.5.10 shows PHP notice regarding notice bar (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8461\\\">#8461<\\/a>)<\\/li>\\n<li>Fix: Fatal error when deleting used Pods fields (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/8396\\\">#8396<\\/a>)<\\/li>\\n<li>Fix: Missing dropdown icon in conditions screen<\\/li>\\n<\\/ul>\\n<h4>2.5.10 - 2019-05-28<\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.6<\\/li>\\n<li>Tweak: Error caused by empty Rows &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\'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\'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\'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 \'View Cart\' link in Products widget<\\/li>\\n<li>Fix: 3rd party plugin support for WC single product template (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5338\\\">#5338<\\/a>)<\\/li>\\n<li>Fix: Layout of Related Product widget with WC native style<\\/li>\\n<\\/ul>\\n<h4>2.1.7 - 2018-09-03<\\/h4>\\n<ul>\\n<li>New: WC Archive Description widget<\\/li>\\n<li>Tweak: Added blend mode to Slides widget background overlay (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5555\\\">#5555<\\/a>)<\\/li>\\n<li>Tweak: Added \'Current Subcategories\' option to Product Categories widget<\\/li>\\n<li>Fix: Added default vertical alignment in Author Box widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5589\\\">#5589<\\/a>)<\\/li>\\n<li>Tweak: Added more blend mode options for CTA widget<\\/li>\\n<li>Tweak: Improved plugin updater method based on WordPress version<\\/li>\\n<li>Fix: Improved IE compatibility for Posts and Portfolio widgets<\\/li>\\n<li>Fix: Added default gap for products pagination<\\/li>\\n<li>Fix: Post thumbnail flickering in Safari browser<\\/li>\\n<li>Fix: Close mobile nav menu on click only in full-width mode<\\/li>\\n<li>Fix: Added trailing slash to pagination links in Posts widget<\\/li>\\n<\\/ul>\\n<h4>2.1.6 - 2018-08-28<\\/h4>\\n<ul>\\n<li>New: WC Product Category Image widget and Dynamic tag (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5117\\\">#5117<\\/a>)<\\/li>\\n<li>Tweak: Allow HTML in Excerpt widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/5491\\\">#5491<\\/a>)<\\/li>\\n<li>Tweak: Added compatibility for the upcoming release of Elementor v2.2<\\/li>\\n<li>Tweak: Deprecated Follow option in the Facebook Button widget<\\/li>\\n<li>Fix: Posts widget grid in Safari &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\'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\'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\'s class for extended widgets<\\/li>\\n<li>Tweak: Set entire-site as default to avoid conflict with save without conditions<\\/li>\\n<li>Tweak: Initialize global model when it\'s needed<\\/li>\\n<li>Tweak: Removed some duplicate strings<\\/li>\\n<li>Tweak: Query control now includes empty terms<\\/li>\\n<li>Tweak: Design polish for conditions dialog<\\/li>\\n<li>Tweak: Decreasing <code>minimumInputLength<\\/code> to 1 of select2<\\/li>\\n<li>Fix: Editor not loading for single templates in edge cases<\\/li>\\n<li>Fix: Select2 in Safari takes it\'s time to get the original select width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4310\\\">#4310<\\/a>)<\\/li>\\n<li>Fix: Slides per view not working for some effects<\\/li>\\n<li>Fix: New slides not showing in the editor<\\/li>\\n<li>Fix: Editor for section without a defined location, defaults to content area<\\/li>\\n<\\/ul>\\n<h4>2.0.3 - 2018-04-24<\\/h4>\\n<ul>\\n<li>Tweak: Optimize CSS for Post Info widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4214\\\">#4214<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4216\\\">#4216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4225\\\">#4225<\\/a>)<\\/li>\\n<li>Fix: Double render on frontend view in core locations<\\/li>\\n<li>Fix: Masonry not working in edge cases<\\/li>\\n<li>Fix: Added default setting for Author Info tag<\\/li>\\n<\\/ul>\\n<h4>2.0.2 - 2018-04-18<\\/h4>\\n<ul>\\n<li>Fix: Regenerate conditions to include all templates<\\/li>\\n<\\/ul>\\n<h4>2.0.1 - 2018-04-17<\\/h4>\\n<ul>\\n<li>Tweak: Added div wrapper for Nothing Found massage (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/4136\\\">#4136<\\/a>)<\\/li>\\n<li>Tweak: Show empty categories in Query Control &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\'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 \'typing\' and \'clip\' animations<\\/li>\\n<li>Fix: Empty menu cause jQuery to crash in Menu widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2662\\\">#2662<\\/a>)<\\/li>\\n<li>Fix: Custom CSS gone after reloading the editor<\\/li>\\n<\\/ul>\\n<h4>1.9.5 - 2017-10-27<\\/h4>\\n<ul>\\n<li>Fix: Broken Global widget with JS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2639\\\">#2639<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.9.4 - 2017-10-24<\\/h4>\\n<ul>\\n<li>Tweak: Improved UI for notices and license page<\\/li>\\n<li>Fix: Update system conflict with other EDD plugins<\\/li>\\n<li>Fix: WooCommerce frontend hooks on Elementor editor (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2577\\\">#2577<\\/a>)<\\/li>\\n<li>Fix: Removed default border left in Nav Menu dropdown CSS (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2496\\\">#2496<\\/a>)<\\/li>\\n<li>Fix: Increased submenu max-width (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2558\\\">#2558<\\/a>)<\\/li>\\n<li>Fix: Save global templates without their defaults<\\/li>\\n<li>Fix: Horizontal scrolling issue with posts grid<\\/li>\\n<\\/ul>\\n<h4>1.9.3 - 2017-10-03<\\/h4>\\n<ul>\\n<li>Fix: Condition slide style that got affected by previous update<\\/li>\\n<\\/ul>\\n<h4>1.9.2 - 2017-10-02<\\/h4>\\n<ul>\\n<li>New: Added integration with MailPoet 3 for Forms actions<\\/li>\\n<li>Fix: Removed height control from Testimonial carousel in mobile editing mode<\\/li>\\n<li>Fix: Removed bottom padding when there\'s no pagination in Testimonial carousel<\\/li>\\n<li>Fix: Added condition for slides style section in skin bubble mode<\\/li>\\n<li>Fix: Slides per view control for mobile editing in Testimonial carousel<\\/li>\\n<li>Fix: Navigation Arrows icons matched with common Elementor Navigation Arrows<\\/li>\\n<\\/ul>\\n<h4>1.9.1 - 2017-09-28<\\/h4>\\n<ul>\\n<li>Fix: Slides per view for slideshow carousel<\\/li>\\n<li>Fix: Final polish for the new Testimonial Carousel widget<\\/li>\\n<li>Fix: Don\'t play video if slide type is not video<\\/li>\\n<li>Fix: Removed slides style section condition (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2497\\\">#2497<\\/a>)<\\/li>\\n<li>Fix: Set cursor as pointer for slideshow thumbnails<\\/li>\\n<\\/ul>\\n<h4>1.9.0 - 2017-09-26<\\/h4>\\n<ul>\\n<li>New: Added Media Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/216\\\">#216<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/347\\\">#347<\\/a>, <a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/2209\\\">#2209<\\/a>)<\\/li>\\n<li>New: Added Testimonial Carousel widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/715\\\">#715<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.8.3 - 2017-09-24<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility for WordPress 4.8.2 &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>ElementorProModulesFormsClassesAction_Base<\\/code> class for better 3rd party integration for forms<\\/li>\\n<li>Tweak: Debugger module now also shows errors from Pro<\\/li>\\n<li>Tweak: Added options for Elementor Library<\\/li>\\n<li>Tweak: New base posts module for optimized performance<\\/li>\\n<li>Tweak: Adjusting Posts \\/ Portfolio to the new structure<\\/li>\\n<li>Fix: Export for posts \\/ portfolio<\\/li>\\n<li>Fix: Duplicate repeater field with switcher control (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1442\\\">#1442<\\/a>)<\\/li>\\n<li>Fix: Post per Page in the query control<\\/li>\\n<li>Fix: Metadata does not come through on form emails (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1566\\\">#1566<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.2.6 - 2017-04-19<\\/h4>\\n<ul>\\n<li>Fix: Added compatibility with WooCommerce 3.0 - Products &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\'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 - \'Link apply on\' logic<\\/li>\\n<li>Fix: Removed unique wrapper for Custom CSS in order to allow media queries (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1086\\\">#1086<\\/a>)<\\/li>\\n<\\/ul>\\n<h4>1.0.4 - 2016-12-21<\\/h4>\\n<ul>\\n<li>Tweak: Mobile Editing for fields in the form widget<\\/li>\\n<li>Tweak: Mobile Editing for posts<\\/li>\\n<li>Tweak: Allow send form as HTML<\\/li>\\n<li>Tweak: Improved auto upgrades for Multisite installation<\\/li>\\n<li>Tweak: Improve editor rendering experience for Portfolio widget<\\/li>\\n<li>Fix: Posts widget check if image exist<\\/li>\\n<li>Fix: Changed the clone method for global widget (<a href=\\\"https:\\/\\/github.com\\/elementor\\/elementor\\/issues\\/1042\\\">#1042<\\/a>)<\\/li>\\n<li>Fix: Bug slides in RTL (removed direction control)<\\/li>\\n<li>Fix: Slides with no height jumps when changing slides<\\/li>\\n<\\/ul>\\n<h4>1.0.3 - 2016-12-13<\\/h4>\\n<ul>\\n<li>Fix: Added escape placeholder for HTML Entities in form widget<\\/li>\\n<li>Fix: Countdown widget RTL bug<\\/li>\\n<li>Fix: Remove redundant #elementor selector for control style<\\/li>\\n<li>Fix: Added prefixing with \'0\' for one digit number in Countdown widget<\\/li>\\n<\\/ul>\\n<h4>1.0.2 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: Page layout collapses when inserting reCAPTCHA field in Form<\\/li>\\n<\\/ul>\\n<h4>1.0.1 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Fix: WordPress widgets disappear from Editor when Elementor Pro active<\\/li>\\n<\\/ul>\\n<h4>1.0.0 - 2016-12-12<\\/h4>\\n<ul>\\n<li>Initial release<\\/li>\\n<\\/ul>\\\";}\",\"new_version\":\"3.20.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxMDQ1OTQ4MiwiZXhwIjoxNzEwNTQ1ODgyfQ.9nq08l1WKHsN4YIhkYxOdGRY4boEK57uyVxYwn0Gp0Y\\/package_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/package_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxMDQ1OTQ4MiwiZXhwIjoxNzEwNTQ1ODgyfQ.9nq08l1WKHsN4YIhkYxOdGRY4boEK57uyVxYwn0Gp0Y\\/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:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"},\"canary_deployment\":{\"plugin_info\":{\"new_version\":\"3.7.0\",\"name\":\"Elementor Pro\",\"slug\":\"elementor-pro\",\"url\":\"https:\\/\\/elementor.com\\/pro\\/changelog\\/\",\"homepage\":\"https:\\/\\/elementor.com\\/pro\\/\",\"requires\":\"5.0\",\"tested\":\"6.4.3\",\"elementor_requires\":\"3.0.1\",\"package\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiaWF0IjoxNzEwNDU5NDgyLCJleHAiOjE3MTA1NDU4ODJ9.3cYnof8dAXzZNSAbGrs6XeMHQx1Tx1K7MCKgwDv-958\\/previous_download\",\"download_link\":\"https:\\/\\/plugin-downloads.elementor.com\\/v2\\/previous_download\\/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiaWF0IjoxNzEwNDU5NDgyLCJleHAiOjE3MTA1NDU4ODJ9.3cYnof8dAXzZNSAbGrs6XeMHQx1Tx1K7MCKgwDv-958\\/previous_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:\\/\\/storage.googleapis.com\\/web-public-files\\/Web%20Assets\\/icons\\/icon.svg\"}},\"conditions\":[[{\"type\":\"language\",\"languages\":[\"he_IL\",\"nl_NL\",\"en_GB\",\"en_NZ\",\"en_ZA\",\"en_AU\",\"en_CA\",\"sv_SE\",\"da_DK\",\"fr_FR\",\"nl_NL\",\"nb_NO\",\"de_AT\",\"fi\",\"it_IT\",\"nn_NO\",\"de_CH\",\"en_GB\",\"is_IS\",\"ga\",\"fr_BE\",\"nl_BE\",\"ast\",\"lb_LU\",\"es_ES\",\"pt_PT\",\"mlt\"],\"operator\":\"in\"}]]},\"cloud\":false}\";}','no'),(11469,'_transient_timeout_jetpack_file_data_13.2.1','1712972758','no'),(11470,'_transient_jetpack_file_data_13.2.1','a:1:{s:32:\"3fd340ad52927afb3bbb9e98575eccfd\";a:15:{s:4:\"name\";s:0:\"\";s:11:\"description\";s:0:\"\";s:4:\"sort\";s:0:\"\";s:20:\"recommendation_order\";s:0:\"\";s:10:\"introduced\";s:0:\"\";s:7:\"changed\";s:0:\"\";s:10:\"deactivate\";s:0:\"\";s:4:\"free\";s:0:\"\";s:19:\"requires_connection\";s:0:\"\";s:24:\"requires_user_connection\";s:0:\"\";s:13:\"auto_activate\";s:0:\"\";s:11:\"module_tags\";s:0:\"\";s:7:\"feature\";s:0:\"\";s:25:\"additional_search_queries\";s:0:\"\";s:12:\"plan_classes\";s:0:\"\";}}','no'),(11493,'_site_transient_timeout_php_check_54d815a6990cd2877bac11ee28ecc90c','1711152664','no'),(11494,'_site_transient_php_check_54d815a6990cd2877bac11ee28ecc90c','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:3:\"7.0\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(11548,'_transient_timeout_wp_plugin_update_bluehost-wordpress-plugin','1710829576','no'),(11549,'_transient_wp_plugin_update_bluehost-wordpress-plugin','O:8:\"stdClass\":22:{s:6:\"author\";s:43:\"<a href=\"https://bluehost.com\">Bluehost</a>\";s:11:\"author_name\";s:8:\"Bluehost\";s:10:\"author_uri\";s:20:\"https://bluehost.com\";s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:13:\"download_link\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.1/bluehost-wordpress-plugin.zip\";s:8:\"homepage\";s:20:\"https://bluehost.com\";s:2:\"id\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:12:\"last_updated\";s:20:\"2024-03-06T18:05:17Z\";s:4:\"name\";s:19:\"The Bluehost Plugin\";s:6:\"plugin\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.1\";s:8:\"sections\";a:1:{s:11:\"description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";}s:17:\"short_description\";s:136:\"WordPress plugin that integrates a WordPress site with the Bluehost control panel, including performance, security, and update features.\";s:4:\"slug\";s:25:\"bluehost-wordpress-plugin\";s:6:\"tested\";s:5:\"6.4.3\";s:7:\"version\";s:5:\"3.9.1\";s:7:\"banners\";a:4:{s:2:\"2x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:2:\"1x\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:4:\"high\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";s:3:\"low\";s:70:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-banner.svg\";}s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";s:2:\"1x\";s:68:\"https://cdn.hiive.space/marketplace/vendors-assets/bluehost-icon.svg\";}s:11:\"new_version\";s:5:\"3.9.1\";s:7:\"package\";s:107:\"https://github.com/bluehost/bluehost-wordpress-plugin/releases/download/3.9.1/bluehost-wordpress-plugin.zip\";s:3:\"url\";s:20:\"https://bluehost.com\";}','no'),(11559,'_site_transient_timeout_theme_roots','1710816983','no'),(11560,'_site_transient_theme_roots','a:6:{s:5:\"rishi\";s:7:\"/themes\";s:7:\"sinatra\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(11563,'_transient_timeout_jetpack_https_test','1710901584','no'),(11564,'_transient_jetpack_https_test','1','no'),(11565,'_transient_timeout_jetpack_https_test_message','1710901584','no'),(11566,'_transient_jetpack_https_test_message','','no'),(11567,'jetpack_site_products','a:0:{}','yes'),(11569,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1710815189;s:8:\"response\";a:1:{s:31:\"elementor-pro/elementor-pro.php\";O:8:\"stdClass\":17:{s:14:\"stable_version\";s:6:\"3.20.0\";s:12:\"last_updated\";s:19:\"2022-05-10 14:03:37\";s:11:\"new_version\";s:6:\"3.20.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:355:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxMDQ1OTQ4MiwiZXhwIjoxNzEwNTQ1ODgyfQ.9nq08l1WKHsN4YIhkYxOdGRY4boEK57uyVxYwn0Gp0Y/package_download\";s:13:\"download_link\";s:355:\"https://plugin-downloads.elementor.com/v2/package_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiZG93bmxvYWRfYmV0YSI6ZmFsc2UsImZpbGVfa2V5IjoiMSIsImlhdCI6MTcxMDQ1OTQ4MiwiZXhwIjoxNzEwNTQ1ODgyfQ.9nq08l1WKHsN4YIhkYxOdGRY4boEK57uyVxYwn0Gp0Y/package_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:12:{s:11:\"new_version\";s:5:\"3.7.0\";s:4:\"name\";s:13:\"Elementor Pro\";s:4:\"slug\";s:13:\"elementor-pro\";s:3:\"url\";s:36:\"https://elementor.com/pro/changelog/\";s:8:\"homepage\";s:26:\"https://elementor.com/pro/\";s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"6.4.3\";s:18:\"elementor_requires\";s:5:\"3.0.1\";s:7:\"package\";s:331:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiaWF0IjoxNzEwNDU5NDgyLCJleHAiOjE3MTA1NDU4ODJ9.3cYnof8dAXzZNSAbGrs6XeMHQx1Tx1K7MCKgwDv-958/previous_download\";s:13:\"download_link\";s:331:\"https://plugin-downloads.elementor.com/v2/previous_download/eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJsaWNlbnNlIjoiKioqKioqKioqIiwidmVyc2lvbiI6IjMuNy4wIiwidXJsIjoiaHR0cHM6Ly9oZWFsdGh5Zm9vZHJlc3RhdXJhbnQuaW4vc3RhZ2luZy8zODcxIiwiaWF0IjoxNzEwNDU5NDgyLCJleHAiOjE3MTA1NDU4ODJ9.3cYnof8dAXzZNSAbGrs6XeMHQx1Tx1K7MCKgwDv-958/previous_download\";s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:5:\"icons\";a:1:{s:3:\"svg\";s:75:\"https://storage.googleapis.com/web-public-files/Web%20Assets/icons/icon.svg\";}}s:10:\"conditions\";a:1:{i:0;a:1:{i:0;a:3:{s:4:\"type\";s:8:\"language\";s:9:\"languages\";a:27:{i:0;s:5:\"he_IL\";i:1;s:5:\"nl_NL\";i:2;s:5:\"en_GB\";i:3;s:5:\"en_NZ\";i:4;s:5:\"en_ZA\";i:5;s:5:\"en_AU\";i:6;s:5:\"en_CA\";i:7;s:5:\"sv_SE\";i:8;s:5:\"da_DK\";i:9;s:5:\"fr_FR\";i:10;s:5:\"nl_NL\";i:11;s:5:\"nb_NO\";i:12;s:5:\"de_AT\";i:13;s:2:\"fi\";i:14;s:5:\"it_IT\";i:15;s:5:\"nn_NO\";i:16;s:5:\"de_CH\";i:17;s:5:\"en_GB\";i:18;s:5:\"is_IS\";i:19;s:2:\"ga\";i:20;s:5:\"fr_BE\";i:21;s:5:\"nl_BE\";i:22;s:3:\"ast\";i:23;s:5:\"lb_LU\";i:24;s:5:\"es_ES\";i:25;s:5:\"pt_PT\";i:26;s:3:\"mlt\";}s:8:\"operator\";s:2:\"in\";}}}}s:5:\"cloud\";b:0;s:6:\"plugin\";s:31:\"elementor-pro/elementor-pro.php\";}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:9:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"5.3.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.5.3.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:60:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=2818463\";s:2:\"1x\";s:60:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=2818463\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/akismet/assets/banner-1544x500.png?rev=2900731\";s:2:\"1x\";s:62:\"https://ps.w.org/akismet/assets/banner-772x250.png?rev=2900731\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.8\";}s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:40:\"w.org/plugins/click-to-chat-for-whatsapp\";s:4:\"slug\";s:26:\"click-to-chat-for-whatsapp\";s:6:\"plugin\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:11:\"new_version\";s:4:\"3.34\";s:3:\"url\";s:57:\"https://wordpress.org/plugins/click-to-chat-for-whatsapp/\";s:7:\"package\";s:74:\"https://downloads.wordpress.org/plugin/click-to-chat-for-whatsapp.3.34.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-256x256.gif?rev=2892731\";s:2:\"1x\";s:79:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/icon-128x128.gif?rev=2892731\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/click-to-chat-for-whatsapp/assets/banner-772x250.png?rev=2896528\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:5:\"5.9.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/contact-form-7.5.9.2.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:47:\"w.org/plugins/creative-mail-by-constant-contact\";s:4:\"slug\";s:33:\"creative-mail-by-constant-contact\";s:6:\"plugin\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:11:\"new_version\";s:5:\"1.6.7\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/creative-mail-by-constant-contact/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/creative-mail-by-constant-contact.1.6.7.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";s:3:\"svg\";s:78:\"https://ps.w.org/creative-mail-by-constant-contact/assets/icon.svg?rev=2341439\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-1544x500.png?rev=2821536\";s:2:\"1x\";s:88:\"https://ps.w.org/creative-mail-by-constant-contact/assets/banner-772x250.png?rev=2821536\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}s:41:\"demo-importer-plus/demo-importer-plus.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:32:\"w.org/plugins/demo-importer-plus\";s:4:\"slug\";s:18:\"demo-importer-plus\";s:6:\"plugin\";s:41:\"demo-importer-plus/demo-importer-plus.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/demo-importer-plus/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/demo-importer-plus.1.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/demo-importer-plus/assets/icon-256x256.jpg?rev=2780470\";s:2:\"1x\";s:71:\"https://ps.w.org/demo-importer-plus/assets/icon-128x128.jpg?rev=2780470\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/demo-importer-plus/assets/banner-1544x500.jpg?rev=2780470\";s:2:\"1x\";s:73:\"https://ps.w.org/demo-importer-plus/assets/banner-772x250.jpg?rev=2780470\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.1\";}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:6:\"3.20.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/plugin/elementor.3.20.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=2597493\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3005087\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3005087\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.0\";}s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.3.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/hello-dolly/assets/banner-1544x500.jpg?rev=2645582\";s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}s:19:\"jetpack/jetpack.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:21:\"w.org/plugins/jetpack\";s:4:\"slug\";s:7:\"jetpack\";s:6:\"plugin\";s:19:\"jetpack/jetpack.php\";s:11:\"new_version\";s:6:\"13.2.1\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/jetpack/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/jetpack.13.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";s:3:\"svg\";s:52:\"https://ps.w.org/jetpack/assets/icon.svg?rev=2819237\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/jetpack/assets/banner-1544x500.png?rev=2653649\";s:2:\"1x\";s:62:\"https://ps.w.org/jetpack/assets/banner-772x250.png?rev=2653649\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.3\";}s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:48:\"w.org/plugins/mega-elements-addons-for-elementor\";s:4:\"slug\";s:34:\"mega-elements-addons-for-elementor\";s:6:\"plugin\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";s:11:\"new_version\";s:5:\"1.2.0\";s:3:\"url\";s:65:\"https://wordpress.org/plugins/mega-elements-addons-for-elementor/\";s:7:\"package\";s:83:\"https://downloads.wordpress.org/plugin/mega-elements-addons-for-elementor.1.2.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:87:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/icon-256x256.jpg?rev=2453188\";s:2:\"1x\";s:87:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/icon-128x128.jpg?rev=2453188\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:90:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/banner-1544x500.jpg?rev=2453188\";s:2:\"1x\";s:89:\"https://ps.w.org/mega-elements-addons-for-elementor/assets/banner-772x250.jpg?rev=2453188\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";}}s:7:\"checked\";a:12:{s:19:\"akismet/akismet.php\";s:5:\"5.3.1\";s:44:\"click-to-chat-for-whatsapp/click-to-chat.php\";s:4:\"3.34\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:5:\"5.9.2\";s:58:\"creative-mail-by-constant-contact/creative-mail-plugin.php\";s:5:\"1.6.7\";s:41:\"demo-importer-plus/demo-importer-plus.php\";s:5:\"1.2.0\";s:23:\"elementor/elementor.php\";s:6:\"3.20.1\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.20.0\";s:9:\"hello.php\";s:5:\"1.7.2\";s:19:\"jetpack/jetpack.php\";s:6:\"13.2.1\";s:73:\"mega-elements-addons-for-elementor/mega-elements-addons-for-elementor.php\";s:5:\"1.2.0\";s:35:\"rishi-companion/rishi-companion.php\";s:5:\"1.2.2\";s:55:\"bluehost-wordpress-plugin/bluehost-wordpress-plugin.php\";s:5:\"3.9.1\";}}','no'),(11579,'_transient_timeout_jetpack_idc_local','1711242454','no'),(11580,'_transient_jetpack_idc_local','a:2:{s:4:\"home\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";s:7:\"siteurl\";s:45:\"https://healthyfoodrestaurant.in/staging/3871\";}','no'),(11581,'_transient_timeout_nfd_site_capabilities','1711256796','no'),(11582,'_transient_nfd_site_capabilities','a:7:{s:11:\"canAccessAI\";b:1;s:18:\"canAccessGlobalCTB\";b:0;s:19:\"canAccessHelpCenter\";b:0;s:11:\"hasEcomdash\";b:0;s:15:\"hasYithExtended\";b:0;s:11:\"isEcommerce\";b:0;s:8:\"isJarvis\";b:0;}','no'),(11583,'_transient_timeout_rishi_license_message','1711328797','no'),(11584,'_transient_rishi_license_message','License key is active.Lifetime License.','no'),(11585,'_transient_timeout_jetpack_update_remote_package_last_query','1711242457','no'),(11586,'_transient_jetpack_update_remote_package_last_query','1711242397','no');
/*!40000 ALTER TABLE `staging_ajj_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_postmeta`
--

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

--
-- Dumping data for table `staging_ajj_postmeta`
--

LOCK TABLES `staging_ajj_postmeta` WRITE;
/*!40000 ALTER TABLE `staging_ajj_postmeta` DISABLE KEYS */;
INSERT INTO `staging_ajj_postmeta` VALUES (2,3,'_wp_page_template','default'),(5,7,'_wp_attached_file','2023/09/rishi-restaurant.xml'),(6,7,'_wp_attachment_metadata','a:1:{s:8:\"filesize\";i:1745007;}'),(7,8,'_wp_attached_file','2021/02/Page-1.png'),(8,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:60;s:4:\"file\";s:18:\"2021/02/Page-1.png\";s:8:\"filesize\";i:665;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:{}}}'),(9,8,'_shortpixel_status','2.6800'),(10,8,'_wxr_import_user_slug','rishidemos'),(11,8,'_demo_importer_plus_sites_imported_post','1'),(12,8,'_demo_importer_enable_for_batch','1'),(13,8,'_demo_importer_plus_sites_image_hash','c469ea3549748c0e233ae7b3f91904e6b15107b5'),(14,8,'_elementor_source_image_hash','c469ea3549748c0e233ae7b3f91904e6b15107b5'),(15,5,'_wp_attached_file','2021/02/Repeat-Grid-1-1.png'),(16,5,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:305;s:6:\"height\";i:5;s:4:\"file\";s:27:\"2021/02/Repeat-Grid-1-1.png\";s:8:\"filesize\";i:115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-150x5.png\";s:5:\"width\";i:150;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-272x5.png\";s:5:\"width\";i:272;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-197x5.png\";s:5:\"width\";i:197;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-270x5.png\";s:5:\"width\";i:270;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-170x5.png\";s:5:\"width\";i:170;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"Repeat-Grid-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(17,5,'_shortpixel_status','2.4300'),(18,5,'_wxr_import_user_slug','rishidemos'),(19,5,'_demo_importer_plus_sites_imported_post','1'),(20,5,'_demo_importer_enable_for_batch','1'),(21,5,'_demo_importer_plus_sites_image_hash','47519549bad84b19ee0d8ce7bf8ab50c63d06935'),(22,5,'_elementor_source_image_hash','47519549bad84b19ee0d8ce7bf8ab50c63d06935'),(23,9,'_wp_attached_file','2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png'),(24,9,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png\";s:8:\"filesize\";i:3206;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:{}}}'),(25,9,'_shortpixel_status','2.6000'),(26,9,'_wxr_import_user_slug','rishidemos'),(27,9,'_demo_importer_plus_sites_imported_post','1'),(28,9,'_demo_importer_enable_for_batch','1'),(29,9,'_demo_importer_plus_sites_image_hash','c37d818167e3a089da80027cacb9db2d99db9cca'),(30,9,'_elementor_source_image_hash','c37d818167e3a089da80027cacb9db2d99db9cca'),(31,10,'_wp_attached_file','2021/02/bg.png'),(32,10,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2021/02/bg.png\";s:8:\"filesize\";i:1312387;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"bg-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102627;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"bg-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1173052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"bg-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670660;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:14:\"bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401327;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:14:\"bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158056;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:14:\"bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182840;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:14:\"bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95558;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:14:\"bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239803;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:14:\"bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260234;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:14:\"bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579848;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:14:\"bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98170;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:14:\"bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367774;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:14:\"bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54797;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:14:\"bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171255;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"bg-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2562768;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1503450;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:14:\"bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:772669;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:14:\"bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173627;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(33,10,'_shortpixel_status','2.6900'),(34,10,'_wxr_import_user_slug','rishidemos'),(35,10,'_demo_importer_plus_sites_imported_post','1'),(36,10,'_demo_importer_enable_for_batch','1'),(37,10,'_demo_importer_plus_sites_image_hash','1a59fcaf47e8177aa25d18e2e446202ce6e0a7ed'),(38,10,'_elementor_source_image_hash','1a59fcaf47e8177aa25d18e2e446202ce6e0a7ed'),(39,11,'_wp_attached_file','2021/02/cayla1-w6ftFbPCs9I-unsplash.png'),(40,11,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:39:\"2021/02/cayla1-w6ftFbPCs9I-unsplash.png\";s:8:\"filesize\";i:3170;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:{}}}'),(41,11,'_shortpixel_status','2.6200'),(42,11,'_wxr_import_user_slug','rishidemos'),(43,11,'_demo_importer_plus_sites_imported_post','1'),(44,11,'_demo_importer_enable_for_batch','1'),(45,11,'_demo_importer_plus_sites_image_hash','4c646bf88af683b12f59ee06bfcf4c4c43bf93a3'),(46,11,'_elementor_source_image_hash','4c646bf88af683b12f59ee06bfcf4c4c43bf93a3'),(47,12,'_wp_attached_file','2021/02/cheesecake-stuffed-strawberries-500x500-1.png'),(48,12,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/02/cheesecake-stuffed-strawberries-500x500-1.png\";s:8:\"filesize\";i:3350;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:{}}}'),(49,12,'_shortpixel_status','2.6200'),(50,12,'_wxr_import_user_slug','rishidemos'),(51,12,'_demo_importer_plus_sites_imported_post','1'),(52,12,'_demo_importer_enable_for_batch','1'),(53,12,'_demo_importer_plus_sites_image_hash','4215390b0cb062d04e86e3d16283b52c7464088a'),(54,12,'_elementor_source_image_hash','4215390b0cb062d04e86e3d16283b52c7464088a'),(55,13,'_wp_attached_file','2021/02/chef.png'),(56,13,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:48;s:4:\"file\";s:16:\"2021/02/chef.png\";s:8:\"filesize\";i:503;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:{}}}'),(57,13,'_shortpixel_status','2.7100'),(58,13,'_wxr_import_user_slug','rishidemos'),(59,13,'_demo_importer_plus_sites_imported_post','1'),(60,13,'_demo_importer_enable_for_batch','1'),(61,13,'_demo_importer_plus_sites_image_hash','5e1dd9196ddc299d06fe5afaa83a8be0bac0d005'),(62,13,'_elementor_source_image_hash','5e1dd9196ddc299d06fe5afaa83a8be0bac0d005'),(63,14,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png'),(64,14,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:48:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png\";s:8:\"filesize\";i:124911;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41964;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220142;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141724;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147226;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93180;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199859;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215923;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x530.png\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276319;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82137;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x320.png\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173970;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52065;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146177;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x520.png\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(65,14,'_shortpixel_status','2.7500'),(66,14,'_wxr_import_user_slug','rishidemos'),(67,14,'_demo_importer_plus_sites_imported_post','1'),(68,14,'_demo_importer_enable_for_batch','1'),(69,14,'_demo_importer_plus_sites_image_hash','d5a9383c8ddcd84bc26e9c3fb2fae63ea445f3d3'),(70,14,'_elementor_source_image_hash','d5a9383c8ddcd84bc26e9c3fb2fae63ea445f3d3'),(71,15,'_wp_attached_file','2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png'),(72,15,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png\";s:8:\"filesize\";i:3174;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:{}}}'),(73,15,'_shortpixel_status','2.5800'),(74,15,'_wxr_import_user_slug','rishidemos'),(75,15,'_demo_importer_plus_sites_imported_post','1'),(76,15,'_demo_importer_enable_for_batch','1'),(77,15,'_demo_importer_plus_sites_image_hash','62dc32dca782bd1e8f5cd7c74b6dd5347c7ff075'),(78,15,'_elementor_source_image_hash','62dc32dca782bd1e8f5cd7c74b6dd5347c7ff075'),(79,16,'_wp_attached_file','2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png'),(80,16,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:44:\"2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png\";s:8:\"filesize\";i:3521;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:{}}}'),(81,16,'_shortpixel_status','2.6100'),(82,16,'_wxr_import_user_slug','rishidemos'),(83,16,'_demo_importer_plus_sites_imported_post','1'),(84,16,'_demo_importer_enable_for_batch','1'),(85,16,'_demo_importer_plus_sites_image_hash','39f1f6e39d42c70d185e59ab07fe548c20899a77'),(86,16,'_elementor_source_image_hash','39f1f6e39d42c70d185e59ab07fe548c20899a77'),(87,17,'_wp_attached_file','2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png'),(88,17,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png\";s:8:\"filesize\";i:2777;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:{}}}'),(89,17,'_shortpixel_status','2.6300'),(90,17,'_wxr_import_user_slug','rishidemos'),(91,17,'_demo_importer_plus_sites_imported_post','1'),(92,17,'_demo_importer_enable_for_batch','1'),(93,17,'_demo_importer_plus_sites_image_hash','d0d2394d8d9266842833107babd40090874e12e2'),(94,17,'_elementor_source_image_hash','d0d2394d8d9266842833107babd40090874e12e2'),(95,18,'_wp_attached_file','2021/02/leaf.png'),(96,18,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:52;s:4:\"file\";s:16:\"2021/02/leaf.png\";s:8:\"filesize\";i:480;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:{}}}'),(97,18,'_shortpixel_status','2.7900'),(98,18,'_wxr_import_user_slug','rishidemos'),(99,18,'_demo_importer_plus_sites_imported_post','1'),(100,18,'_demo_importer_enable_for_batch','1'),(101,18,'_demo_importer_plus_sites_image_hash','c526ee958df92d6f7f166c04d1b7eaf35dbac9de'),(102,18,'_elementor_source_image_hash','c526ee958df92d6f7f166c04d1b7eaf35dbac9de'),(103,19,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png'),(104,19,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png\";s:8:\"filesize\";i:3084;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:{}}}'),(105,19,'_shortpixel_status','2.6200'),(106,19,'_wxr_import_user_slug','rishidemos'),(107,19,'_demo_importer_plus_sites_imported_post','1'),(108,19,'_demo_importer_enable_for_batch','1'),(109,19,'_demo_importer_plus_sites_image_hash','47b06c63dbfaa50d1fb750b62a9d8b428eca434e'),(110,19,'_elementor_source_image_hash','47b06c63dbfaa50d1fb750b62a9d8b428eca434e'),(111,20,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png'),(112,20,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png\";s:8:\"filesize\";i:3380;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:{}}}'),(113,20,'_shortpixel_status','2.6000'),(114,20,'_wxr_import_user_slug','rishidemos'),(115,20,'_demo_importer_plus_sites_imported_post','1'),(116,20,'_demo_importer_enable_for_batch','1'),(117,20,'_demo_importer_plus_sites_image_hash','c69423872e61935b355a529e3dbec51c6c1ee4da'),(118,20,'_elementor_source_image_hash','c69423872e61935b355a529e3dbec51c6c1ee4da'),(119,21,'_wp_attached_file','2021/02/lunch.png'),(120,21,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:17:\"2021/02/lunch.png\";s:8:\"filesize\";i:901;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:{}}}'),(121,21,'_shortpixel_status','2.7000'),(122,21,'_wxr_import_user_slug','rishidemos'),(123,21,'_demo_importer_plus_sites_imported_post','1'),(124,21,'_demo_importer_enable_for_batch','1'),(125,21,'_demo_importer_plus_sites_image_hash','60a41fb53e0c5bf252f214714a64a6fec6dcc6eb'),(126,21,'_elementor_source_image_hash','60a41fb53e0c5bf252f214714a64a6fec6dcc6eb'),(127,22,'_wp_attached_file','2021/02/make-a-reservation.png'),(128,22,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:997;s:4:\"file\";s:30:\"2021/02/make-a-reservation.png\";s:8:\"filesize\";i:645786;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69962;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1024x532.png\";s:5:\"width\";i:1024;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-768x399.png\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421561;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285143;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119769;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78546;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189152;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415103;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73176;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254988;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43108;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1536x798.png\";s:5:\"width\";i:1536;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1672642;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:31:\"make-a-reservation-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049002;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542611;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:30:\"make-a-reservation-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(129,22,'_shortpixel_status','2.7400'),(130,22,'_wxr_import_user_slug','rishidemos'),(131,22,'_demo_importer_plus_sites_imported_post','1'),(132,22,'_demo_importer_enable_for_batch','1'),(133,22,'_demo_importer_plus_sites_image_hash','acc8fe8a71b5e911d9f890d7117b8b369c239dae'),(134,22,'_elementor_source_image_hash','acc8fe8a71b5e911d9f890d7117b8b369c239dae'),(135,23,'_wp_attached_file','2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png'),(136,23,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:49:\"2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png\";s:8:\"filesize\";i:3650;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:{}}}'),(137,23,'_shortpixel_status','2.6000'),(138,23,'_wxr_import_user_slug','rishidemos'),(139,23,'_demo_importer_plus_sites_imported_post','1'),(140,23,'_demo_importer_enable_for_batch','1'),(141,23,'_demo_importer_plus_sites_image_hash','59605b31d4f0d3ac8d038f12802a0cfd3cc5535b'),(142,23,'_elementor_source_image_hash','59605b31d4f0d3ac8d038f12802a0cfd3cc5535b'),(143,24,'_wp_attached_file','2021/02/offer.png'),(144,24,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:622;s:4:\"file\";s:17:\"2021/02/offer.png\";s:8:\"filesize\";i:83127;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"offer-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19820;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"offer-1024x332.png\";s:5:\"width\";i:1024;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"offer-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14976;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"offer-768x249.png\";s:5:\"width\";i:768;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91591;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"offer-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72361;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"offer-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41422;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"offer-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43364;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"offer-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27301;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"offer-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56304;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"offer-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59547;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"offer-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103723;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"offer-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25636;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"offer-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86539;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"offer-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18403;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"offer-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43346;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:18:\"offer-1536x498.png\";s:5:\"width\";i:1536;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279031;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"offer-1170x622.png\";s:5:\"width\";i:1170;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143230;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"offer-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122242;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"offer-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40045;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(145,24,'_shortpixel_status','2.7400'),(146,24,'_wxr_import_user_slug','rishidemos'),(147,24,'_demo_importer_plus_sites_imported_post','1'),(148,24,'_demo_importer_enable_for_batch','1'),(149,24,'_demo_importer_plus_sites_image_hash','36c6deb8cdd672a338d6d03bef587426405687f9'),(150,24,'_elementor_source_image_hash','36c6deb8cdd672a338d6d03bef587426405687f9'),(151,25,'_wp_attached_file','2021/02/refresh.png'),(152,25,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:54;s:4:\"file\";s:19:\"2021/02/refresh.png\";s:8:\"filesize\";i:872;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:{}}}'),(153,25,'_shortpixel_status','2.7500'),(154,25,'_wxr_import_user_slug','rishidemos'),(155,25,'_demo_importer_plus_sites_imported_post','1'),(156,25,'_demo_importer_enable_for_batch','1'),(157,25,'_demo_importer_plus_sites_image_hash','a37aab534f4ced4ff855007c85c81d9f535515cb'),(158,25,'_elementor_source_image_hash','a37aab534f4ced4ff855007c85c81d9f535515cb'),(159,26,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52.png'),(160,26,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:42:\"2021/02/screenshot-2020.08.06-07_47_52.png\";s:8:\"filesize\";i:114377;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339867;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160638;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110578;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223429;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239482;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94295;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239207;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59813;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165433;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_47_52-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(161,26,'_shortpixel_status','2.7700'),(162,26,'_wxr_import_user_slug','rishidemos'),(163,26,'_demo_importer_plus_sites_imported_post','1'),(164,26,'_demo_importer_enable_for_batch','1'),(165,26,'_demo_importer_plus_sites_image_hash','081ed06e6c662567513d69023b84c2d551d28bc9'),(166,26,'_elementor_source_image_hash','081ed06e6c662567513d69023b84c2d551d28bc9'),(167,27,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28.png'),(168,27,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:42:\"2021/02/screenshot-2020.08.06-07_48_28.png\";s:8:\"filesize\";i:93243;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42296;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:287199;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130647;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84401;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189531;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202943;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82788;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187148;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52440;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"screenshot-2020.08.06-07_48_28-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(169,27,'_shortpixel_status','2.7600'),(170,27,'_wxr_import_user_slug','rishidemos'),(171,27,'_demo_importer_plus_sites_imported_post','1'),(172,27,'_demo_importer_enable_for_batch','1'),(173,27,'_demo_importer_plus_sites_image_hash','5dd22cee1e4bf5571b36621625bf2d35e2b4b570'),(174,27,'_elementor_source_image_hash','5dd22cee1e4bf5571b36621625bf2d35e2b4b570'),(175,28,'_wp_attached_file','2021/02/sign.png'),(176,28,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:384;s:6:\"height\";i:99;s:4:\"file\";s:16:\"2021/02/sign.png\";s:8:\"filesize\";i:1696;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"sign-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"sign-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1816;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"sign-272x99.png\";s:5:\"width\";i:272;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2798;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:15:\"sign-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"sign-197x99.png\";s:5:\"width\";i:197;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2209;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:15:\"sign-355x99.png\";s:5:\"width\";i:355;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3589;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:15:\"sign-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"sign-270x99.png\";s:5:\"width\";i:270;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2800;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"sign-170x99.png\";s:5:\"width\";i:170;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"sign-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3031;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:15:\"sign-360x99.png\";s:5:\"width\";i:360;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(177,28,'_shortpixel_status','2.6600'),(178,28,'_wxr_import_user_slug','rishidemos'),(179,28,'_demo_importer_plus_sites_imported_post','1'),(180,28,'_demo_importer_enable_for_batch','1'),(181,28,'_demo_importer_plus_sites_image_hash','a99654108897365fad471601703a97d7596d36ec'),(182,28,'_elementor_source_image_hash','a99654108897365fad471601703a97d7596d36ec'),(183,29,'_wp_attached_file','2021/02/testimonial-bg.png'),(184,29,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:26:\"2021/02/testimonial-bg.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:27:\"testimonial-bg-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"testimonial-bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(185,29,'_shortpixel_status','2.7700'),(186,29,'_wxr_import_user_slug','rishidemos'),(187,29,'_demo_importer_plus_sites_imported_post','1'),(188,29,'_demo_importer_enable_for_batch','1'),(189,29,'_demo_importer_plus_sites_image_hash','a371fc01e38d09ab8ce08988be282107f66faa55'),(190,29,'_elementor_source_image_hash','a371fc01e38d09ab8ce08988be282107f66faa55'),(191,30,'_wp_attached_file','2021/02/tim-chow-MhpxHv0FKtE-unsplash.png'),(192,30,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/02/tim-chow-MhpxHv0FKtE-unsplash.png\";s:8:\"filesize\";i:3367;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:{}}}'),(193,30,'_shortpixel_status','2.5900'),(194,30,'_wxr_import_user_slug','rishidemos'),(195,30,'_demo_importer_plus_sites_imported_post','1'),(196,30,'_demo_importer_enable_for_batch','1'),(197,30,'_demo_importer_plus_sites_image_hash','a0893d3c9dd25c7f94399acb92e5ece20a44d99c'),(198,30,'_elementor_source_image_hash','a0893d3c9dd25c7f94399acb92e5ece20a44d99c'),(199,31,'_wp_attached_file','2021/02/wedding-dinner.png'),(200,31,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:66;s:6:\"height\";i:51;s:4:\"file\";s:26:\"2021/02/wedding-dinner.png\";s:8:\"filesize\";i:533;s:5:\"sizes\";a:0:{}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,31,'_shortpixel_status','2.6800'),(202,31,'_wxr_import_user_slug','rishidemos'),(203,31,'_demo_importer_plus_sites_imported_post','1'),(204,31,'_demo_importer_enable_for_batch','1'),(205,31,'_demo_importer_plus_sites_image_hash','c078714e40d017cff1be705ca80bbfe5397f4977'),(206,31,'_elementor_source_image_hash','c078714e40d017cff1be705ca80bbfe5397f4977'),(207,32,'_wp_attached_file','2021/02/bg-1.png'),(208,32,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:16:\"2021/02/bg-1.png\";s:8:\"filesize\";i:1312387;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"bg-1-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102627;}s:5:\"large\";a:5:{s:4:\"file\";s:17:\"bg-1-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1173052;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42771;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"bg-1-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:670660;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:401327;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158056;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:182840;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:95558;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239803;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:260234;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:579848;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98170;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:367774;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54797;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171255;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:17:\"bg-1-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2562768;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"bg-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1503450;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:16:\"bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:772669;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173627;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,32,'_elementor_source_image_hash','3fb81513babc24b55f899b74651eec7aac1b7dbe'),(210,32,'_shortpixel_status','2.6900'),(211,32,'_wxr_import_user_slug','rishidemos'),(212,32,'_demo_importer_plus_sites_imported_post','1'),(213,32,'_demo_importer_enable_for_batch','1'),(214,32,'_demo_importer_plus_sites_image_hash','3fb81513babc24b55f899b74651eec7aac1b7dbe'),(215,33,'_wp_attached_file','2021/02/leaf-1.png'),(216,33,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:70;s:6:\"height\";i:52;s:4:\"file\";s:18:\"2021/02/leaf-1.png\";s:8:\"filesize\";i:480;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:{}}}'),(217,33,'_elementor_source_image_hash','36891d0e12eae0546a1d6ec365fcd4e120443c1a'),(218,33,'_shortpixel_status','2.7900'),(219,33,'_wxr_import_user_slug','rishidemos'),(220,33,'_demo_importer_plus_sites_imported_post','1'),(221,33,'_demo_importer_enable_for_batch','1'),(222,33,'_demo_importer_plus_sites_image_hash','36891d0e12eae0546a1d6ec365fcd4e120443c1a'),(223,34,'_wp_attached_file','2021/02/refresh-1.png'),(224,34,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:72;s:6:\"height\";i:54;s:4:\"file\";s:21:\"2021/02/refresh-1.png\";s:8:\"filesize\";i:872;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:{}}}'),(225,34,'_elementor_source_image_hash','837da5f12ab4d3aa7619165f81e6bc607eed9a91'),(226,34,'_shortpixel_status','2.7500'),(227,34,'_wxr_import_user_slug','rishidemos'),(228,34,'_demo_importer_plus_sites_imported_post','1'),(229,34,'_demo_importer_enable_for_batch','1'),(230,34,'_demo_importer_plus_sites_image_hash','837da5f12ab4d3aa7619165f81e6bc607eed9a91'),(231,35,'_wp_attached_file','2021/02/chef-1.png'),(232,35,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:65;s:6:\"height\";i:48;s:4:\"file\";s:18:\"2021/02/chef-1.png\";s:8:\"filesize\";i:503;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:{}}}'),(233,35,'_elementor_source_image_hash','4af53b04ddf735de2765bd82b83b7bc323f5bfac'),(234,35,'_shortpixel_status','2.7100'),(235,35,'_wxr_import_user_slug','rishidemos'),(236,35,'_demo_importer_plus_sites_imported_post','1'),(237,35,'_demo_importer_enable_for_batch','1'),(238,35,'_demo_importer_plus_sites_image_hash','4af53b04ddf735de2765bd82b83b7bc323f5bfac'),(239,36,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1.png'),(240,36,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:44:\"2021/02/screenshot-2020.08.06-07_47_52-1.png\";s:8:\"filesize\";i:114377;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128198;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:339867;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160638;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:110578;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:223429;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239482;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:94295;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:239207;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59813;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:165433;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_47_52-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158266;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(241,36,'_elementor_source_image_hash','e26e43df55a7f45bc0ea3a7afa55a89a24a4927b'),(242,36,'_shortpixel_status','2.7700'),(243,36,'_wxr_import_user_slug','rishidemos'),(244,36,'_demo_importer_plus_sites_imported_post','1'),(245,36,'_demo_importer_enable_for_batch','1'),(246,36,'_demo_importer_plus_sites_image_hash','e26e43df55a7f45bc0ea3a7afa55a89a24a4927b'),(247,37,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1.png'),(248,37,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:44:\"2021/02/screenshot-2020.08.06-07_48_28-1.png\";s:8:\"filesize\";i:93243;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-300x226.png\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:109484;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42296;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:287199;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130647;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:84401;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189531;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:202943;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82788;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:187148;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52440;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"screenshot-2020.08.06-07_48_28-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136888;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(249,37,'_elementor_source_image_hash','5d8672b78b6b7a47efcd462fe6d452a7e1e5d556'),(250,37,'_shortpixel_status','2.7600'),(251,37,'_wxr_import_user_slug','rishidemos'),(252,37,'_demo_importer_plus_sites_imported_post','1'),(253,37,'_demo_importer_enable_for_batch','1'),(254,37,'_demo_importer_plus_sites_image_hash','5d8672b78b6b7a47efcd462fe6d452a7e1e5d556'),(255,38,'_wp_attached_file','2021/02/offer-1.png'),(256,38,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:622;s:4:\"file\";s:19:\"2021/02/offer-1.png\";s:8:\"filesize\";i:83127;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"offer-1-300x97.png\";s:5:\"width\";i:300;s:6:\"height\";i:97;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:19820;}s:5:\"large\";a:5:{s:4:\"file\";s:20:\"offer-1-1024x332.png\";s:5:\"width\";i:1024;s:6:\"height\";i:332;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149533;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"offer-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14976;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"offer-1-768x249.png\";s:5:\"width\";i:768;s:6:\"height\";i:249;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91591;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:19:\"offer-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72361;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:19:\"offer-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41422;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:19:\"offer-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43364;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:19:\"offer-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:27301;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:19:\"offer-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:56304;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:19:\"offer-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59547;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:19:\"offer-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103723;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:19:\"offer-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25636;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:19:\"offer-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86539;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:19:\"offer-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:18403;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:19:\"offer-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43346;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:20:\"offer-1-1536x498.png\";s:5:\"width\";i:1536;s:6:\"height\";i:498;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:279031;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"offer-1-1170x622.png\";s:5:\"width\";i:1170;s:6:\"height\";i:622;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:143230;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:19:\"offer-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122242;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:19:\"offer-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:40045;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(257,38,'_elementor_source_image_hash','1ffc0877418bd9e477ad0c1bc64c982f6fc8aa49'),(258,38,'_shortpixel_status','2.7400'),(259,38,'_wxr_import_user_slug','rishidemos'),(260,38,'_demo_importer_plus_sites_imported_post','1'),(261,38,'_demo_importer_enable_for_batch','1'),(262,38,'_demo_importer_plus_sites_image_hash','1ffc0877418bd9e477ad0c1bc64c982f6fc8aa49'),(263,39,'_wp_attached_file','2021/02/Page-1-1.png'),(264,39,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:71;s:6:\"height\";i:60;s:4:\"file\";s:20:\"2021/02/Page-1-1.png\";s:8:\"filesize\";i:665;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:{}}}'),(265,39,'_elementor_source_image_hash','aad3b45fe9608be6868bd362eddc706b91dc2c68'),(266,39,'_shortpixel_status','2.6800'),(267,39,'_wxr_import_user_slug','rishidemos'),(268,39,'_demo_importer_plus_sites_imported_post','1'),(269,39,'_demo_importer_enable_for_batch','1'),(270,39,'_demo_importer_plus_sites_image_hash','aad3b45fe9608be6868bd362eddc706b91dc2c68'),(271,40,'_wp_attached_file','2021/02/lunch-1.png'),(272,40,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:62;s:6:\"height\";i:62;s:4:\"file\";s:19:\"2021/02/lunch-1.png\";s:8:\"filesize\";i:901;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:{}}}'),(273,40,'_elementor_source_image_hash','493538df85f57426f9c566d98fbe6c83ff6037fa'),(274,40,'_shortpixel_status','2.7000'),(275,40,'_wxr_import_user_slug','rishidemos'),(276,40,'_demo_importer_plus_sites_imported_post','1'),(277,40,'_demo_importer_enable_for_batch','1'),(278,40,'_demo_importer_plus_sites_image_hash','493538df85f57426f9c566d98fbe6c83ff6037fa'),(279,41,'_wp_attached_file','2021/02/wedding-dinner-1.png'),(280,41,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:66;s:6:\"height\";i:51;s:4:\"file\";s:28:\"2021/02/wedding-dinner-1.png\";s:8:\"filesize\";i:533;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:{}}}'),(281,41,'_elementor_source_image_hash','0f34b24a7fcb53a237dcfa256e405ff1a7753388'),(282,41,'_shortpixel_status','2.6800'),(283,41,'_wxr_import_user_slug','rishidemos'),(284,41,'_demo_importer_plus_sites_imported_post','1'),(285,41,'_demo_importer_enable_for_batch','1'),(286,41,'_demo_importer_plus_sites_image_hash','0f34b24a7fcb53a237dcfa256e405ff1a7753388'),(287,42,'_wp_attached_file','2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png'),(288,42,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png\";s:8:\"filesize\";i:3170;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:{}}}'),(289,42,'_elementor_source_image_hash','e92e3535a929d895ee9b0413342b098381bcc869'),(290,42,'_shortpixel_status','2.6200'),(291,42,'_wxr_import_user_slug','rishidemos'),(292,42,'_demo_importer_plus_sites_imported_post','1'),(293,42,'_demo_importer_enable_for_batch','1'),(294,42,'_demo_importer_plus_sites_image_hash','e92e3535a929d895ee9b0413342b098381bcc869'),(295,43,'_wp_attached_file','2021/02/Repeat-Grid-1-1-1.png'),(296,43,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:305;s:6:\"height\";i:5;s:4:\"file\";s:29:\"2021/02/Repeat-Grid-1-1-1.png\";s:8:\"filesize\";i:115;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:506;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-150x5.png\";s:5:\"width\";i:150;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:158;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-272x5.png\";s:5:\"width\";i:272;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:167;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-197x5.png\";s:5:\"width\";i:197;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-270x5.png\";s:5:\"width\";i:270;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:166;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-170x5.png\";s:5:\"width\";i:170;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"Repeat-Grid-1-1-1-300x5.png\";s:5:\"width\";i:300;s:6:\"height\";i:5;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:171;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(297,43,'_elementor_source_image_hash','8e3d4e880eac035484252873b29df1e66b50bb11'),(298,43,'_shortpixel_status','2.4300'),(299,43,'_wxr_import_user_slug','rishidemos'),(300,43,'_demo_importer_plus_sites_imported_post','1'),(301,43,'_demo_importer_enable_for_batch','1'),(302,43,'_demo_importer_plus_sites_image_hash','8e3d4e880eac035484252873b29df1e66b50bb11'),(303,44,'_wp_attached_file','2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png'),(304,44,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png\";s:8:\"filesize\";i:3521;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:{}}}'),(305,44,'_elementor_source_image_hash','84d89a9fef76e763f5bfaec57bb53fce4cadd0d3'),(306,44,'_shortpixel_status','2.6100'),(307,44,'_wxr_import_user_slug','rishidemos'),(308,44,'_demo_importer_plus_sites_imported_post','1'),(309,44,'_demo_importer_enable_for_batch','1'),(310,44,'_demo_importer_plus_sites_image_hash','84d89a9fef76e763f5bfaec57bb53fce4cadd0d3'),(311,45,'_wp_attached_file','2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png'),(312,45,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:51:\"2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png\";s:8:\"filesize\";i:3650;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:{}}}'),(313,45,'_elementor_source_image_hash','f1b784fcde2aa8e47076e0adc40c9af1cb3b9709'),(314,45,'_shortpixel_status','2.6000'),(315,45,'_wxr_import_user_slug','rishidemos'),(316,45,'_demo_importer_plus_sites_imported_post','1'),(317,45,'_demo_importer_enable_for_batch','1'),(318,45,'_demo_importer_plus_sites_image_hash','f1b784fcde2aa8e47076e0adc40c9af1cb3b9709'),(319,46,'_wp_attached_file','2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png'),(320,46,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:50:\"2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png\";s:8:\"filesize\";i:3174;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:{}}}'),(321,46,'_elementor_source_image_hash','969ed5defe7837f589b122f5a7ee6d6b80f42e27'),(322,46,'_shortpixel_status','2.5800'),(323,46,'_wxr_import_user_slug','rishidemos'),(324,46,'_demo_importer_plus_sites_imported_post','1'),(325,46,'_demo_importer_enable_for_batch','1'),(326,46,'_demo_importer_plus_sites_image_hash','969ed5defe7837f589b122f5a7ee6d6b80f42e27'),(327,47,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png'),(328,47,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:60:\"2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png\";s:8:\"filesize\";i:3084;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:{}}}'),(329,47,'_elementor_source_image_hash','d6b7051b7a9917c846fe814556fbda47547d1303'),(330,47,'_shortpixel_status','2.6200'),(331,47,'_wxr_import_user_slug','rishidemos'),(332,47,'_demo_importer_plus_sites_imported_post','1'),(333,47,'_demo_importer_enable_for_batch','1'),(334,47,'_demo_importer_plus_sites_image_hash','d6b7051b7a9917c846fe814556fbda47547d1303'),(335,48,'_wp_attached_file','2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png'),(336,48,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:60:\"2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png\";s:8:\"filesize\";i:3380;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:{}}}'),(337,48,'_elementor_source_image_hash','ef6bbc5e447eaf822e342f538457311081448788'),(338,48,'_shortpixel_status','2.6000'),(339,48,'_wxr_import_user_slug','rishidemos'),(340,48,'_demo_importer_plus_sites_imported_post','1'),(341,48,'_demo_importer_enable_for_batch','1'),(342,48,'_demo_importer_plus_sites_image_hash','ef6bbc5e447eaf822e342f538457311081448788'),(343,49,'_wp_attached_file','2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png'),(344,49,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:55:\"2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png\";s:8:\"filesize\";i:3350;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:{}}}'),(345,49,'_elementor_source_image_hash','0709fb6656c05327272ce3872dda9048830c2258'),(346,49,'_shortpixel_status','2.6200'),(347,49,'_wxr_import_user_slug','rishidemos'),(348,49,'_demo_importer_plus_sites_imported_post','1'),(349,49,'_demo_importer_enable_for_batch','1'),(350,49,'_demo_importer_plus_sites_image_hash','0709fb6656c05327272ce3872dda9048830c2258'),(351,50,'_wp_attached_file','2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png'),(352,50,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png\";s:8:\"filesize\";i:2777;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:{}}}'),(353,50,'_elementor_source_image_hash','14fa4e9db6b7134ad9ee0813131d2a289eae0534'),(354,50,'_shortpixel_status','2.6300'),(355,50,'_wxr_import_user_slug','rishidemos'),(356,50,'_demo_importer_plus_sites_imported_post','1'),(357,50,'_demo_importer_enable_for_batch','1'),(358,50,'_demo_importer_plus_sites_image_hash','14fa4e9db6b7134ad9ee0813131d2a289eae0534'),(359,51,'_wp_attached_file','2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png'),(360,51,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:55:\"2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\";s:8:\"filesize\";i:3206;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:{}}}'),(361,51,'_elementor_source_image_hash','096ff9a72fcb881bff86b2b7f98a793046b57ebb'),(362,51,'_shortpixel_status','2.6000'),(363,51,'_wxr_import_user_slug','rishidemos'),(364,51,'_demo_importer_plus_sites_imported_post','1'),(365,51,'_demo_importer_enable_for_batch','1'),(366,51,'_demo_importer_plus_sites_image_hash','096ff9a72fcb881bff86b2b7f98a793046b57ebb'),(367,52,'_wp_attached_file','2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png'),(368,52,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:43:\"2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png\";s:8:\"filesize\";i:3367;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:{}}}'),(369,52,'_elementor_source_image_hash','be0f32c946369954c99d449de04bc4ba5e1d4ed8'),(370,52,'_shortpixel_status','2.5900'),(371,52,'_wxr_import_user_slug','rishidemos'),(372,52,'_demo_importer_plus_sites_imported_post','1'),(373,52,'_demo_importer_enable_for_batch','1'),(374,52,'_demo_importer_plus_sites_image_hash','be0f32c946369954c99d449de04bc4ba5e1d4ed8'),(375,53,'_wp_attached_file','2021/02/sign-1.png'),(376,53,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:384;s:6:\"height\";i:99;s:4:\"file\";s:18:\"2021/02/sign-1.png\";s:8:\"filesize\";i:1696;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"sign-1-300x77.png\";s:5:\"width\";i:300;s:6:\"height\";i:77;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:10226;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"sign-1-150x99.png\";s:5:\"width\";i:150;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1816;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"sign-1-272x99.png\";s:5:\"width\";i:272;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2798;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"sign-1-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"sign-1-197x99.png\";s:5:\"width\";i:197;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2209;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"sign-1-355x99.png\";s:5:\"width\";i:355;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3589;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"sign-1-370x99.png\";s:5:\"width\";i:370;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3620;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"sign-1-270x99.png\";s:5:\"width\";i:270;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2800;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"sign-1-170x99.png\";s:5:\"width\";i:170;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"sign-1-300x99.png\";s:5:\"width\";i:300;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3031;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"sign-1-360x99.png\";s:5:\"width\";i:360;s:6:\"height\";i:99;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3603;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(377,53,'_elementor_source_image_hash','e5eb12d1bc294c5b738f349e53c5934eaf40707e'),(378,53,'_shortpixel_status','2.6600'),(379,53,'_wxr_import_user_slug','rishidemos'),(380,53,'_demo_importer_plus_sites_imported_post','1'),(381,53,'_demo_importer_enable_for_batch','1'),(382,53,'_demo_importer_plus_sites_image_hash','e5eb12d1bc294c5b738f349e53c5934eaf40707e'),(383,54,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png'),(384,54,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:50:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png\";s:8:\"filesize\";i:124911;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-249x300.png\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:124637;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41964;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:220142;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141724;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147226;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93180;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199859;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:215923;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x530.png\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:276319;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82137;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x320.png\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:173970;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52065;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146177;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-500x520.png\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:272115;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139666;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(385,54,'_elementor_source_image_hash','f1d083346a86918c98fdfb5af364c5b319a8ce53'),(386,54,'_shortpixel_status','2.7500'),(387,54,'_wxr_import_user_slug','rishidemos'),(388,54,'_demo_importer_plus_sites_imported_post','1'),(389,54,'_demo_importer_enable_for_batch','1'),(390,54,'_demo_importer_plus_sites_image_hash','f1d083346a86918c98fdfb5af364c5b319a8ce53'),(391,57,'_wp_attached_file','2021/02/testimonial-bg-1.png'),(392,57,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:28:\"2021/02/testimonial-bg-1.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:29:\"testimonial-bg-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:28:\"testimonial-bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(393,57,'_shortpixel_status','2.7700'),(394,57,'_wxr_import_user_slug','rishidemos'),(395,57,'_demo_importer_plus_sites_imported_post','1'),(396,57,'_demo_importer_enable_for_batch','1'),(397,57,'_demo_importer_plus_sites_image_hash','40f20d081492a0732eefbfe19af0eefcc198fac6'),(398,57,'_elementor_source_image_hash','40f20d081492a0732eefbfe19af0eefcc198fac6'),(399,78,'_wp_attached_file','2021/02/testimonial-bg-1-1.png'),(400,78,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:30:\"2021/02/testimonial-bg-1-1.png\";s:8:\"filesize\";i:383448;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-300x124.png\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55071;}s:5:\"large\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1024x423.png\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:530702;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43163;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-768x318.png\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:306704;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:324725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:149963;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:140709;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100079;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:210865;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:227860;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:489890;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78605;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:259020;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54193;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154058;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1536x635.png\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1208823;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:31:\"testimonial-bg-1-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1068934;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:576264;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:30:\"testimonial-bg-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:133665;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(401,78,'_elementor_source_image_hash','e72ad487c359939512a962433308e1756cd96e9f'),(402,78,'_shortpixel_status','2.7700'),(403,78,'_wxr_import_user_slug','rishidemos'),(404,78,'_demo_importer_plus_sites_imported_post','1'),(405,78,'_demo_importer_enable_for_batch','1'),(406,78,'_demo_importer_plus_sites_image_hash','e72ad487c359939512a962433308e1756cd96e9f'),(407,79,'_wp_attached_file','2021/02/make-a-reservation-1.png'),(408,79,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:997;s:4:\"file\";s:32:\"2021/02/make-a-reservation-1.png\";s:8:\"filesize\";i:645786;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69962;}s:5:\"large\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1024x532.png\";s:5:\"width\";i:1024;s:6:\"height\";i:532;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:744518;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:34406;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-768x399.png\";s:5:\"width\";i:768;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:421561;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:285143;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:119769;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132393;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:78546;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:174455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:189152;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415103;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:73176;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:254988;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:43108;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126406;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1536x798.png\";s:5:\"width\";i:1536;s:6:\"height\";i:798;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1672642;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:33:\"make-a-reservation-1-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1049002;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:542611;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:32:\"make-a-reservation-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125395;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(409,79,'_elementor_source_image_hash','f9629ce754e413873f1cf73811014f558a616c8b'),(410,79,'_shortpixel_status','2.7400'),(411,79,'_wxr_import_user_slug','rishidemos'),(412,79,'_demo_importer_plus_sites_imported_post','1'),(413,79,'_demo_importer_enable_for_batch','1'),(414,79,'_demo_importer_plus_sites_image_hash','f9629ce754e413873f1cf73811014f558a616c8b'),(415,87,'_wp_attached_file','2021/02/about-bg.png'),(416,87,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:20:\"2021/02/about-bg.png\";s:8:\"filesize\";i:665973;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"about-bg-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72483;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"about-bg-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:703803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"about-bg-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55265;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"about-bg-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415317;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"about-bg-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427573;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"about-bg-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185562;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"about-bg-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209702;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"about-bg-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120842;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"about-bg-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267085;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"about-bg-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288404;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"about-bg-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:599780;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"about-bg-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117173;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"about-bg-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"about-bg-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"about-bg-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196548;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"about-bg-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1498290;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:21:\"about-bg-1170x640.png\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1377905;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:20:\"about-bg-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:789186;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"about-bg-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(417,87,'_shortpixel_status','2.7100'),(418,87,'_wxr_import_user_slug','rishidemos'),(419,87,'_demo_importer_plus_sites_imported_post','1'),(420,87,'_demo_importer_enable_for_batch','1'),(421,87,'_demo_importer_plus_sites_image_hash','39b3626b7cb4495af60d85acfc889a19b761a214'),(422,87,'_elementor_source_image_hash','39b3626b7cb4495af60d85acfc889a19b761a214'),(423,88,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png'),(424,88,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:47:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42102;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146129;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112513;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98193;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136135;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86740;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137500;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52692;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150954;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144182;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(425,88,'_shortpixel_status','2.7500'),(426,88,'_wxr_import_user_slug','rishidemos'),(427,88,'_demo_importer_plus_sites_imported_post','1'),(428,88,'_demo_importer_enable_for_batch','1'),(429,88,'_demo_importer_plus_sites_image_hash','817b7b7f2fb047cc363ada5d1636af2e7973070c'),(430,88,'_elementor_source_image_hash','817b7b7f2fb047cc363ada5d1636af2e7973070c'),(431,89,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png'),(432,89,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:45:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png\";s:8:\"filesize\";i:45613;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42371;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-272x284.png\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103193;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93014;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-355x284.png\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112716;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83641;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53111;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98835;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(433,89,'_shortpixel_status','2.7500'),(434,89,'_wxr_import_user_slug','rishidemos'),(435,89,'_demo_importer_plus_sites_imported_post','1'),(436,89,'_demo_importer_enable_for_batch','1'),(437,89,'_demo_importer_plus_sites_image_hash','4ecfd12bf420698f0033b47bd032a82ea9e9798f'),(438,89,'_elementor_source_image_hash','4ecfd12bf420698f0033b47bd032a82ea9e9798f'),(439,90,'_wp_attached_file','2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png'),(440,90,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:42:\"2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png\";s:8:\"filesize\";i:64391;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46988;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154901;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136626;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102540;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172411;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91769;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175171;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58835;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164600;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:42:\"elevate-iv6yNy7oBqQ-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(441,90,'_shortpixel_status','2.7100'),(442,90,'_wxr_import_user_slug','rishidemos'),(443,90,'_demo_importer_plus_sites_imported_post','1'),(444,90,'_demo_importer_enable_for_batch','1'),(445,90,'_demo_importer_plus_sites_image_hash','9fcddd6b3548ac89999dd5e1e8d5888b54a195d5'),(446,90,'_elementor_source_image_hash','9fcddd6b3548ac89999dd5e1e8d5888b54a195d5'),(447,91,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png'),(448,91,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png\";s:8:\"filesize\";i:52507;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-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:41017;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132092;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88441;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125060;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81100;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127186;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50944;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-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:139816;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(449,91,'_shortpixel_status','2.7500'),(450,91,'_wxr_import_user_slug','rishidemos'),(451,91,'_demo_importer_plus_sites_imported_post','1'),(452,91,'_demo_importer_enable_for_batch','1'),(453,91,'_demo_importer_plus_sites_image_hash','29915ced6de59b23e310ec079245442a33f04d7e'),(454,91,'_elementor_source_image_hash','29915ced6de59b23e310ec079245442a33f04d7e'),(455,92,'_wp_attached_file','2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png'),(456,92,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:48:\"2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png\";s:8:\"filesize\";i:61427;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46454;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147301;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117842;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100502;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150543;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89952;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57704;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(457,92,'_shortpixel_status','2.7400'),(458,92,'_wxr_import_user_slug','rishidemos'),(459,92,'_demo_importer_plus_sites_imported_post','1'),(460,92,'_demo_importer_enable_for_batch','1'),(461,92,'_demo_importer_plus_sites_image_hash','1813df4f152ea6d0d712296419de34d39dfa9e59'),(462,92,'_elementor_source_image_hash','1813df4f152ea6d0d712296419de34d39dfa9e59'),(463,93,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1-1.png'),(464,93,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_47_52-1-1.png\";s:8:\"filesize\";i:56410;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:47853;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154542;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122724;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108367;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155267;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157239;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59556;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:160149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(465,93,'_shortpixel_status','2.7800'),(466,93,'_wxr_import_user_slug','rishidemos'),(467,93,'_demo_importer_plus_sites_imported_post','1'),(468,93,'_demo_importer_enable_for_batch','1'),(469,93,'_demo_importer_plus_sites_image_hash','a80031178073c3d19413f0b24493b5190ba04315'),(470,93,'_elementor_source_image_hash','a80031178073c3d19413f0b24493b5190ba04315'),(471,94,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1-1.png'),(472,94,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_48_28-1-1.png\";s:8:\"filesize\";i:49347;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42352;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126837;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83709;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127981;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82625;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130221;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:138525;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(473,94,'_shortpixel_status','2.7800'),(474,94,'_wxr_import_user_slug','rishidemos'),(475,94,'_demo_importer_plus_sites_imported_post','1'),(476,94,'_demo_importer_enable_for_batch','1'),(477,94,'_demo_importer_plus_sites_image_hash','778060f83788b57f12376ee6f54e91b77a08e71e'),(478,94,'_elementor_source_image_hash','778060f83788b57f12376ee6f54e91b77a08e71e'),(479,95,'_wp_attached_file','2021/02/about-bg-1.png'),(480,95,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:22:\"2021/02/about-bg-1.png\";s:8:\"filesize\";i:665973;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:22:\"about-bg-1-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:72483;}s:5:\"large\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1024x341.png\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:703803;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"about-bg-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:55265;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:22:\"about-bg-1-768x256.png\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:415317;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:22:\"about-bg-1-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:427573;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:185562;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:22:\"about-bg-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:209702;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:120842;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:22:\"about-bg-1-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:267085;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:22:\"about-bg-1-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:288404;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:22:\"about-bg-1-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:599780;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:22:\"about-bg-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117173;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:22:\"about-bg-1-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:410008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:22:\"about-bg-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:69658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:22:\"about-bg-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:196548;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1536x512.png\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1498290;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:23:\"about-bg-1-1170x640.png\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1377905;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:22:\"about-bg-1-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:789186;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:22:\"about-bg-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:199514;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(481,95,'_elementor_source_image_hash','cef2e3e23b89edfe6e7bd4117a3e7a859fe9df48'),(482,95,'_shortpixel_status','2.7100'),(483,95,'_wxr_import_user_slug','rishidemos'),(484,95,'_demo_importer_plus_sites_imported_post','1'),(485,95,'_demo_importer_enable_for_batch','1'),(486,95,'_demo_importer_plus_sites_image_hash','cef2e3e23b89edfe6e7bd4117a3e7a859fe9df48'),(487,96,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png'),(488,96,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:47:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png\";s:8:\"filesize\";i:45613;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-300x230.png\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:116171;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-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:42371;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-272x284.png\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:103193;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:93014;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-355x284.png\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112716;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83641;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:53111;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98835;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"brooke-cagle-8jp-6SjVibM-unsplash-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136900;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(489,96,'_elementor_source_image_hash','fdf94a401c1ca585b326c403eb411f7394acfc32'),(490,96,'_shortpixel_status','2.7500'),(491,96,'_wxr_import_user_slug','rishidemos'),(492,96,'_demo_importer_plus_sites_imported_post','1'),(493,96,'_demo_importer_enable_for_batch','1'),(494,96,'_demo_importer_plus_sites_image_hash','fdf94a401c1ca585b326c403eb411f7394acfc32'),(495,97,'_wp_attached_file','2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png'),(496,97,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:52:\"2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png\";s:8:\"filesize\";i:52507;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:41017;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132092;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:88441;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:125060;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:81100;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127186;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:50944;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:139816;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"febrian-zakaria-SiQgni-cqFg-unsplash-2-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:131979;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(497,97,'_elementor_source_image_hash','5f4a388b156f607d13483958ed29a01d926d6417'),(498,97,'_shortpixel_status','2.7500'),(499,97,'_wxr_import_user_slug','rishidemos'),(500,97,'_demo_importer_plus_sites_imported_post','1'),(501,97,'_demo_importer_enable_for_batch','1'),(502,97,'_demo_importer_plus_sites_image_hash','5f4a388b156f607d13483958ed29a01d926d6417'),(503,98,'_wp_attached_file','2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png'),(504,98,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:44:\"2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png\";s:8:\"filesize\";i:64391;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:151000;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46988;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154901;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136626;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:102540;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:172411;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91769;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:175171;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:58835;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:164600;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"elevate-iv6yNy7oBqQ-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152217;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(505,98,'_elementor_source_image_hash','817612daecbc0a9b62caf1ce9e50722bfade5c13'),(506,98,'_shortpixel_status','2.7100'),(507,98,'_wxr_import_user_slug','rishidemos'),(508,98,'_demo_importer_plus_sites_imported_post','1'),(509,98,'_demo_importer_enable_for_batch','1'),(510,98,'_demo_importer_plus_sites_image_hash','817612daecbc0a9b62caf1ce9e50722bfade5c13'),(511,99,'_wp_attached_file','2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png'),(512,99,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png\";s:8:\"filesize\";i:61427;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:141590;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:46454;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:147301;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:117842;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:100502;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150543;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:89952;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:152048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:57704;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146019;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(513,99,'_elementor_source_image_hash','9bbc45b6ea25fccbbb29e1c8e9f9aee8a666c1e9'),(514,99,'_shortpixel_status','2.7400'),(515,99,'_wxr_import_user_slug','rishidemos'),(516,99,'_demo_importer_plus_sites_imported_post','1'),(517,99,'_demo_importer_enable_for_batch','1'),(518,99,'_demo_importer_plus_sites_image_hash','9bbc45b6ea25fccbbb29e1c8e9f9aee8a666c1e9'),(519,100,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_47_52-1-2.png'),(520,100,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_47_52-1-2.png\";s:8:\"filesize\";i:56410;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146931;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-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:47853;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:154542;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:122724;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:108367;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:155267;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:92448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:157239;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:59556;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-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:160149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_47_52-1-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150015;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(521,100,'_elementor_source_image_hash','5d0ca1b2a25fa81b417353b6ac59ba239fd7b32c'),(522,100,'_shortpixel_status','2.7800'),(523,100,'_wxr_import_user_slug','rishidemos'),(524,100,'_demo_importer_plus_sites_imported_post','1'),(525,100,'_demo_importer_enable_for_batch','1'),(526,100,'_demo_importer_plus_sites_image_hash','5d0ca1b2a25fa81b417353b6ac59ba239fd7b32c'),(527,101,'_wp_attached_file','2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png'),(528,101,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:49:\"2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png\";s:8:\"filesize\";i:52984;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136293;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:42102;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:146129;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:112513;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:98193;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:136135;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:86740;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:137500;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52692;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:150954;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:49:\"brooke-cagle-8jp-6SjVibM-unsplash-1-1-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:144182;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(529,101,'_elementor_source_image_hash','a4b8746320a1e7d029e32e63f4588d5f93656075'),(530,101,'_shortpixel_status','2.7500'),(531,101,'_wxr_import_user_slug','rishidemos'),(532,101,'_demo_importer_plus_sites_imported_post','1'),(533,101,'_demo_importer_enable_for_batch','1'),(534,101,'_demo_importer_plus_sites_image_hash','a4b8746320a1e7d029e32e63f4588d5f93656075'),(535,102,'_wp_attached_file','2021/02/screenshot-2020.08.06-07_48_28-1-2.png'),(536,102,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:46:\"2021/02/screenshot-2020.08.06-07_48_28-1-2.png\";s:8:\"filesize\";i:49347;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-300x268.png\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:128291;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-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:42352;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:126837;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:104273;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:83709;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-355x330.png\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:127981;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:82625;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-370x320.png\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:130221;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:52411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-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:138525;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"screenshot-2020.08.06-07_48_28-1-2-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:132719;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(537,102,'_elementor_source_image_hash','710ab60a71c37dc91e8554ed141e630f6eb4e4c1'),(538,102,'_shortpixel_status','2.7800'),(539,102,'_wxr_import_user_slug','rishidemos'),(540,102,'_demo_importer_plus_sites_imported_post','1'),(541,102,'_demo_importer_enable_for_batch','1'),(542,102,'_demo_importer_plus_sites_image_hash','710ab60a71c37dc91e8554ed141e630f6eb4e4c1'),(543,134,'_wp_attached_file','2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg'),(544,134,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:402;s:4:\"file\";s:45:\"2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg\";s:8:\"filesize\";i:42419;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-280x300.jpg\";s:5:\"width\";i:280;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7502;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19872;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22466;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14265;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27264;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28989;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14071;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-375x320.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29411;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9107;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20928;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21219;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(545,134,'_shortpixel_status','2.6500'),(548,134,'_demo_importer_plus_sites_imported_post','1'),(549,134,'_demo_importer_enable_for_batch','1'),(550,134,'_demo_importer_plus_sites_image_hash','e42c8298291f8cb96c12cd3d0654d4bc232ea6e5'),(551,134,'_elementor_source_image_hash','e42c8298291f8cb96c12cd3d0654d4bc232ea6e5'),(552,296,'_wp_attached_file','2021/03/4817.jpg'),(553,296,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:375;s:6:\"height\";i:401;s:4:\"file\";s:16:\"2021/03/4817.jpg\";s:8:\"filesize\";i:56872;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"4817-281x300.jpg\";s:5:\"width\";i:281;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24935;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"4817-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8596;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"4817-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"4817-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27525;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"4817-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17576;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"4817-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34742;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"4817-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37214;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"4817-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16815;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"4817-375x320.jpg\";s:5:\"width\";i:375;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42575;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"4817-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10691;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"4817-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26411;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"4817-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25824;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(554,296,'_shortpixel_status','2.6100'),(557,296,'_demo_importer_plus_sites_imported_post','1'),(558,296,'_demo_importer_enable_for_batch','1'),(559,296,'_demo_importer_plus_sites_image_hash','2621042a4977290d56d726768ae246ce28be5fe2'),(560,296,'_elementor_source_image_hash','2621042a4977290d56d726768ae246ce28be5fe2'),(561,564,'_wp_attached_file','2021/08/woocommerce-placeholder.png'),(562,564,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:35:\"2021/08/woocommerce-placeholder.png\";s:8:\"filesize\";i:20623;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11485;}s:5:\"large\";a:5:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:91078;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4015;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:54573;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-500x410.png\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:25720;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-272x316.png\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12320;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x247.png\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15213;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-197x278.png\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9793;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-355x355.png\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14972;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-370x370.png\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:15988;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-570x530.png\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:32273;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:9447;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-570x320.png\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:30624;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4877;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:11485;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:36:\"woocommerce-placeholder-1170x650.png\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:106883;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-750x520.png\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:51869;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-360x240.png\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:14756;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(563,564,'_shortpixel_status','2.7900'),(564,564,'_demo_importer_plus_sites_imported_post','1'),(565,564,'_demo_importer_enable_for_batch','1'),(566,564,'_demo_importer_plus_sites_image_hash','2a01c1c9727ec8db9bb248c9856807a313cdb8a9'),(567,564,'_elementor_source_image_hash','2a01c1c9727ec8db9bb248c9856807a313cdb8a9'),(568,608,'_wp_attached_file','2021/11/bg.jpg'),(569,608,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:1080;s:4:\"file\";s:14:\"2021/11/bg.jpg\";s:8:\"filesize\";i:276610;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:14:\"bg-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13414;}s:5:\"large\";a:5:{s:4:\"file\";s:15:\"bg-1024x576.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:137505;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:14:\"bg-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5720;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:14:\"bg-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81360;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:14:\"bg-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48831;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:14:\"bg-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18203;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:14:\"bg-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23107;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:14:\"bg-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10968;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:14:\"bg-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28941;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:14:\"bg-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31561;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:14:\"bg-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68474;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:14:\"bg-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12754;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:14:\"bg-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45734;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:14:\"bg-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7258;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:14:\"bg-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20643;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:15:\"bg-1536x864.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:284251;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"bg-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:176203;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:14:\"bg-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:91704;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:14:\"bg-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21470;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(570,608,'_shortpixel_status','2.8400'),(573,608,'_demo_importer_plus_sites_imported_post','1'),(574,608,'_demo_importer_enable_for_batch','1'),(575,608,'_demo_importer_plus_sites_image_hash','b5214bf5a3481864f5fb911a4932aa1fe87e6a57'),(576,608,'_elementor_source_image_hash','b5214bf5a3481864f5fb911a4932aa1fe87e6a57'),(577,762,'_wp_attached_file','2021/11/logo.jpg'),(578,762,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:16:\"2021/11/logo.jpg\";s:8:\"filesize\";i:2242;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x64.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2395;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x65.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1759;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"logo-272x65.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2377;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"logo-197x65.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2037;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"logo-270x65.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2409;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"logo-170x65.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:1877;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"logo-300x65.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:2615;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(579,762,'_shortpixel_status','2.6300'),(580,762,'_wxr_import_user_slug','rishidemos'),(581,762,'_demo_importer_plus_sites_imported_post','1'),(582,762,'_demo_importer_enable_for_batch','1'),(583,762,'_demo_importer_plus_sites_image_hash','f016248afa0a831b42fcc22966c3d6cffd60ebc1'),(584,762,'_elementor_source_image_hash','f016248afa0a831b42fcc22966c3d6cffd60ebc1'),(585,764,'_wp_attached_file','2021/11/logo.png'),(586,764,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:16:\"2021/11/logo.png\";s:8:\"filesize\";i:1353;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"logo-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7470;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"logo-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1317;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"logo-272x65.png\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2501;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"logo-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1518;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"logo-270x65.png\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2474;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"logo-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1426;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"logo-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2776;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(587,764,'_shortpixel_status','2.7300'),(588,764,'_wxr_import_user_slug','rishidemos'),(589,764,'_demo_importer_plus_sites_imported_post','1'),(590,764,'_demo_importer_enable_for_batch','1'),(591,764,'_demo_importer_plus_sites_image_hash','363a2bc8a3aaf4d7e07dc258f3c281f61b96b026'),(592,764,'_elementor_source_image_hash','363a2bc8a3aaf4d7e07dc258f3c281f61b96b026'),(593,767,'_wp_attached_file','2021/11/facebook-logo.svg'),(594,767,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:492;s:5:\"width\";i:8;s:6:\"height\";i:14;}'),(598,767,'_demo_importer_plus_sites_imported_post','1'),(599,767,'_demo_importer_enable_for_batch','1'),(600,767,'_demo_importer_plus_sites_image_hash','ddd34ec12c989da7335311667d2f46d8212d1b20'),(601,767,'_elementor_source_image_hash','ddd34ec12c989da7335311667d2f46d8212d1b20'),(602,768,'_wp_attached_file','2021/11/twitter.svg'),(603,768,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:780;s:5:\"width\";i:15;s:6:\"height\";i:12;}'),(607,768,'_demo_importer_plus_sites_imported_post','1'),(608,768,'_demo_importer_enable_for_batch','1'),(609,768,'_demo_importer_plus_sites_image_hash','5c60eaded3c88102f10631ab0d09bd301e853501'),(610,768,'_elementor_source_image_hash','5c60eaded3c88102f10631ab0d09bd301e853501'),(611,769,'_wp_attached_file','2021/11/instagram.svg'),(612,769,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:843;s:5:\"width\";i:16;s:6:\"height\";i:16;}'),(616,769,'_demo_importer_plus_sites_imported_post','1'),(617,769,'_demo_importer_enable_for_batch','1'),(618,769,'_demo_importer_plus_sites_image_hash','ab0cf6488d2c1ae55d12b275eccc4596bb22793e'),(619,769,'_elementor_source_image_hash','ab0cf6488d2c1ae55d12b275eccc4596bb22793e'),(620,770,'_wp_attached_file','2021/11/linkedin.svg'),(621,770,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:956;s:5:\"width\";i:13;s:6:\"height\";i:13;}'),(625,770,'_demo_importer_plus_sites_imported_post','1'),(626,770,'_demo_importer_enable_for_batch','1'),(627,770,'_demo_importer_plus_sites_image_hash','eb0cda7fc93b4cc21de23a626da2c97371af7f2d'),(628,770,'_elementor_source_image_hash','eb0cda7fc93b4cc21de23a626da2c97371af7f2d'),(629,829,'_wp_attached_file','2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg'),(630,829,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:39:\"2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg\";s:8:\"filesize\";i:31257;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15987;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6770;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16308;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19137;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12166;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23309;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23740;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12069;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23661;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7966;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17066;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:39:\"nikldn-HzVHlwvQlyw-unsplash-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20733;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(631,829,'_shortpixel_status','2.6600'),(634,829,'_demo_importer_plus_sites_imported_post','1'),(635,829,'_demo_importer_enable_for_batch','1'),(636,829,'_demo_importer_plus_sites_image_hash','a0fcc428d1b87f2f8c5063505de868227d358ab9'),(637,829,'_elementor_source_image_hash','a0fcc428d1b87f2f8c5063505de868227d358ab9'),(638,837,'_wp_attached_file','2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg'),(639,837,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:270;s:6:\"height\";i:222;s:4:\"file\";s:49:\"2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg\";s:8:\"filesize\";i:20219;s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7628;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-197x222.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:222;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12286;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14089;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:49:\"victoria-shes-kKULRLHdtLo-unsplash-13-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9025;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(640,837,'_shortpixel_status','2.6500'),(643,837,'_demo_importer_plus_sites_imported_post','1'),(644,837,'_demo_importer_enable_for_batch','1'),(645,837,'_demo_importer_plus_sites_image_hash','8fe10f0776556cbe38df7b09208077f08934f8f7'),(646,837,'_elementor_source_image_hash','8fe10f0776556cbe38df7b09208077f08934f8f7'),(647,839,'_wp_attached_file','2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg'),(648,839,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:730;s:6:\"height\";i:400;s:4:\"file\";s:48:\"2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg\";s:8:\"filesize\";i:45829;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-300x164.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:164;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7777;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-500x400.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38520;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19148;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21857;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13471;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26362;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27839;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-570x400.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39732;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13980;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36315;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9300;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20773;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"victoria-shes-kKULRLHdtLo-unsplash-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20882;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(649,839,'_shortpixel_status','2.8000'),(652,839,'_demo_importer_plus_sites_imported_post','1'),(653,839,'_demo_importer_enable_for_batch','1'),(654,839,'_demo_importer_plus_sites_image_hash','9d7b0d9833889bab4ca74c44670a2185de6dc495'),(655,839,'_elementor_source_image_hash','9d7b0d9833889bab4ca74c44670a2185de6dc495'),(656,840,'_wp_attached_file','2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-scaled.jpg'),(657,840,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:53:\"2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-scaled.jpg\";s:8:\"filesize\";i:334880;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13859;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78607;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7442;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50850;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33684;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18005;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18466;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13066;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24459;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25963;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45010;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12025;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29632;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8974;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19142;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1536x1024.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:145456;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-2048x1365.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233018;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:83794;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51295;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"jordi-pujadas-MHzYnDM34IQ-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17636;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:38:\"jordi-pujadas-MHzYnDM34IQ-unsplash.jpg\";}'),(658,840,'_shortpixel_status','2.7900'),(661,840,'_demo_importer_plus_sites_imported_post','1'),(662,840,'_demo_importer_enable_for_batch','1'),(663,840,'_demo_importer_plus_sites_image_hash','d97fb7613404dfae70123dbd9baff7c1f17577b9'),(664,840,'_elementor_source_image_hash','d97fb7613404dfae70123dbd9baff7c1f17577b9'),(665,841,'_wp_attached_file','2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg'),(666,841,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:48:\"2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\";s:8:\"filesize\";i:18166;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17003;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7149;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17477;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18042;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12821;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22923;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23616;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11869;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19271;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8428;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-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:17886;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"jordi-pujadas-MHzYnDM34IQ-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15776;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(667,841,'_shortpixel_status','2.2100'),(670,841,'_demo_importer_plus_sites_imported_post','1'),(671,841,'_demo_importer_enable_for_batch','1'),(672,841,'_demo_importer_plus_sites_image_hash','af7d0e202574ee07ea6d8eab314e9aba157be79d'),(673,841,'_elementor_source_image_hash','af7d0e202574ee07ea6d8eab314e9aba157be79d'),(674,856,'_wp_attached_file','2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg'),(675,856,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:46:\"2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\";s:8:\"filesize\";i:30679;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24870;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9461;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25248;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28335;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18138;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36557;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37484;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17052;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32297;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11536;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-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:26705;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-oaz0raysASk-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25784;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(676,856,'_shortpixel_status','2.1900'),(679,856,'_demo_importer_plus_sites_imported_post','1'),(680,856,'_demo_importer_enable_for_batch','1'),(681,856,'_demo_importer_plus_sites_image_hash','c9e87778d00988dc1a22e2184ff6f8f527f36e1d'),(682,856,'_elementor_source_image_hash','c9e87778d00988dc1a22e2184ff6f8f527f36e1d'),(683,860,'_wp_attached_file','2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg'),(684,860,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:39:\"2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\";s:8:\"filesize\";i:29219;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21079;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8471;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21196;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21968;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15178;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30764;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31740;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13138;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26935;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10187;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-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:22149;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:39:\"stil-u2Lp8tXIcjw-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20026;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(685,860,'_shortpixel_status','2.0400'),(688,860,'_demo_importer_plus_sites_imported_post','1'),(689,860,'_demo_importer_enable_for_batch','1'),(690,860,'_demo_importer_plus_sites_image_hash','eeec94945de88f8af23e244e040dcbcdcc3dcc71'),(691,860,'_elementor_source_image_hash','eeec94945de88f8af23e244e040dcbcdcc3dcc71'),(692,864,'_wp_attached_file','2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg'),(693,864,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:44:\"2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\";s:8:\"filesize\";i:19922;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17005;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7172;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17442;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19504;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12904;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23651;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24283;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12530;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20888;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8479;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-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:18138;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"casey-lee-awj7sRviVXo-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17799;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(694,864,'_shortpixel_status','2.1700'),(697,864,'_demo_importer_plus_sites_imported_post','1'),(698,864,'_demo_importer_enable_for_batch','1'),(699,864,'_demo_importer_plus_sites_image_hash','1d1833c22f5d3f8564652d99f203466a42656cfa'),(700,864,'_elementor_source_image_hash','1d1833c22f5d3f8564652d99f203466a42656cfa'),(701,868,'_wp_attached_file','2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg'),(702,868,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:352;s:6:\"height\";i:385;s:4:\"file\";s:50:\"2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\";s:8:\"filesize\";i:21030;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-274x300.jpg\";s:5:\"width\";i:274;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17632;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6711;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17779;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x247.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17877;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12525;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x355.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24776;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x370.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25631;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11000;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x320.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21008;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8140;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-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:18266;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-1-352x240.jpg\";s:5:\"width\";i:352;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16215;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(703,868,'_shortpixel_status','2.1700'),(706,868,'_demo_importer_plus_sites_imported_post','1'),(707,868,'_demo_importer_enable_for_batch','1'),(708,868,'_demo_importer_plus_sites_image_hash','693100778404de87685ee83e0c8d95c49aeb6978'),(709,868,'_elementor_source_image_hash','693100778404de87685ee83e0c8d95c49aeb6978'),(710,1029,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg'),(711,1029,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:500;s:6:\"height\";i:602;s:4:\"file\";s:48:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\";s:8:\"filesize\";i:29137;s:5:\"sizes\";a:15:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-249x300.jpg\";s:5:\"width\";i:249;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15866;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6887;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25725;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16974;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15781;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12414;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21078;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22419;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x530.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35966;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10598;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x320.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23147;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8198;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16915;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-500x520.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34248;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"febrian-zakaria-SiQgni-cqFg-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14946;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(712,1029,'_shortpixel_status','2.8400'),(715,1029,'_demo_importer_plus_sites_imported_post','1'),(716,1029,'_demo_importer_enable_for_batch','1'),(717,1029,'_demo_importer_plus_sites_image_hash','8abe75da323661305c77664f110942082443a7bb'),(718,1029,'_elementor_source_image_hash','8abe75da323661305c77664f110942082443a7bb'),(719,1073,'_wp_attached_file','2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg'),(720,1073,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:794;s:4:\"file\";s:44:\"2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg\";s:8:\"filesize\";i:75471;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-300x124.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:124;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9477;}s:5:\"large\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1024x423.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57359;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7716;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-768x318.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:318;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37531;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39336;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21171;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20190;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15328;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28352;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30113;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53364;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12691;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32819;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9338;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21914;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1536x635.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:635;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102868;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:45:\"brooke-lark-nBtmglfY0HU-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:93402;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59475;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"brooke-lark-nBtmglfY0HU-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18999;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(721,1073,'_shortpixel_status','2.8800'),(724,1073,'_demo_importer_plus_sites_imported_post','1'),(725,1073,'_demo_importer_enable_for_batch','1'),(726,1073,'_demo_importer_plus_sites_image_hash','ec0f435ccac79073ec9eb4fea9a224814f5d3bff'),(727,1073,'_elementor_source_image_hash','ec0f435ccac79073ec9eb4fea9a224814f5d3bff'),(728,1107,'_wp_attached_file','2021/11/alexandra-lammerink-1.jpg'),(729,1107,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:33:\"2021/11/alexandra-lammerink-1.jpg\";s:8:\"filesize\";i:2800;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:{}}}'),(730,1107,'_shortpixel_status','2.6500'),(733,1107,'_demo_importer_plus_sites_imported_post','1'),(734,1107,'_demo_importer_enable_for_batch','1'),(735,1107,'_demo_importer_plus_sites_image_hash','f96aca2680c0d7321ca2163798078198daee03e0'),(736,1107,'_elementor_source_image_hash','f96aca2680c0d7321ca2163798078198daee03e0'),(737,1109,'_wp_attached_file','2021/11/screenshot-22.jpg'),(738,1109,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:25:\"2021/11/screenshot-22.jpg\";s:8:\"filesize\";i:23018;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"screenshot-22-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11782;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"screenshot-22-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5078;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12030;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11836;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9228;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:25:\"screenshot-22-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15580;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16864;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"screenshot-22-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7752;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14717;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"screenshot-22-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5948;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"screenshot-22-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12349;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-22-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11442;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(739,1109,'_shortpixel_status','2.6900'),(742,1109,'_demo_importer_plus_sites_imported_post','1'),(743,1109,'_demo_importer_enable_for_batch','1'),(744,1109,'_demo_importer_plus_sites_image_hash','d75fcad725bc5d84153af6891c7049ea0d42d704'),(745,1109,'_elementor_source_image_hash','d75fcad725bc5d84153af6891c7049ea0d42d704'),(746,1110,'_wp_attached_file','2021/11/screenshot-20.jpg'),(747,1110,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:25:\"2021/11/screenshot-20.jpg\";s:8:\"filesize\";i:23504;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"screenshot-20-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12089;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"screenshot-20-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5236;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12087;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11879;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9407;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:25:\"screenshot-20-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15557;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17038;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:25:\"screenshot-20-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7704;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14696;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:25:\"screenshot-20-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6070;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:25:\"screenshot-20-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12465;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:25:\"screenshot-20-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11406;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(748,1110,'_shortpixel_status','2.6800'),(751,1110,'_demo_importer_plus_sites_imported_post','1'),(752,1110,'_demo_importer_enable_for_batch','1'),(753,1110,'_demo_importer_plus_sites_image_hash','3dce2e8967a9502b39ca3c9d2eb358f8fb35edc5'),(754,1110,'_elementor_source_image_hash','3dce2e8967a9502b39ca3c9d2eb358f8fb35edc5'),(755,1117,'_wp_attached_file','2021/11/screenshot-4.jpg'),(756,1117,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:360;s:6:\"height\";i:395;s:4:\"file\";s:24:\"2021/11/screenshot-4.jpg\";s:8:\"filesize\";i:19449;s:5:\"sizes\";a:12:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-4-273x300.jpg\";s:5:\"width\";i:273;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9934;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-4-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4319;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10111;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x247.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10059;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7782;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-4-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13070;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x370.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14352;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-4-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6465;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x320.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12540;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-4-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:4999;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-4-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10328;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-4-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9684;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(757,1117,'_shortpixel_status','2.6800'),(760,1117,'_demo_importer_plus_sites_imported_post','1'),(761,1117,'_demo_importer_enable_for_batch','1'),(762,1117,'_demo_importer_plus_sites_image_hash','2096d2ef6b49360a094513857aed1a6cba39d5ac'),(763,1117,'_elementor_source_image_hash','2096d2ef6b49360a094513857aed1a6cba39d5ac'),(764,1210,'_wp_attached_file','2021/11/Path-24976.png'),(765,1210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:167;s:4:\"file\";s:22:\"2021/11/Path-24976.png\";s:8:\"filesize\";i:663;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:22:\"Path-24976-134x150.png\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1311;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(766,1210,'_shortpixel_status','2.8700'),(769,1210,'_demo_importer_plus_sites_imported_post','1'),(770,1210,'_demo_importer_enable_for_batch','1'),(771,1210,'_demo_importer_plus_sites_image_hash','d4ae45e438b2b80d03002b89218b4616b05e7390'),(772,1210,'_elementor_source_image_hash','d4ae45e438b2b80d03002b89218b4616b05e7390'),(773,1211,'_wp_attached_file','2021/11/Group-149.png'),(774,1211,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:134;s:6:\"height\";i:167;s:4:\"file\";s:21:\"2021/11/Group-149.png\";s:8:\"filesize\";i:782;s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:21:\"Group-149-134x150.png\";s:5:\"width\";i:134;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1457;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(775,1211,'_shortpixel_status','2.8700'),(778,1211,'_demo_importer_plus_sites_imported_post','1'),(779,1211,'_demo_importer_enable_for_batch','1'),(780,1211,'_demo_importer_plus_sites_image_hash','1db4ac5f4bae9cdf3330dcb601a20b33d1b982a3'),(781,1211,'_elementor_source_image_hash','1db4ac5f4bae9cdf3330dcb601a20b33d1b982a3'),(782,3080,'_wp_attached_file','2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg'),(783,3080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:46:\"2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg\";s:8:\"filesize\";i:144056;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22321;}s:5:\"large\";a:5:{s:4:\"file\";s:47:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:153137;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10027;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99221;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59112;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30108;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30803;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20976;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40880;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43570;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80162;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18286;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53629;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12347;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-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:30959;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:48:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:277511;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"brooke-lark-C1fMH2Vej8A-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:159480;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96558;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:46:\"brooke-lark-C1fMH2Vej8A-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29325;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(784,3080,'_shortpixel_status','2.6200'),(787,3080,'_demo_importer_plus_sites_imported_post','1'),(788,3080,'_demo_importer_enable_for_batch','1'),(789,3080,'_demo_importer_plus_sites_image_hash','964a708502186c21a7743a9ef98303985c38ca05'),(790,3080,'_elementor_source_image_hash','964a708502186c21a7743a9ef98303985c38ca05'),(791,3081,'_wp_attached_file','2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg'),(792,3081,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:41:\"2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg\";s:8:\"filesize\";i:103370;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15383;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"nikldn-HzVHlwvQlyw-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95356;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7832;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61985;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38374;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20565;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20809;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14991;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27455;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29396;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51762;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13102;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36734;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9411;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-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:21380;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"nikldn-HzVHlwvQlyw-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:172944;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:42:\"nikldn-HzVHlwvQlyw-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106028;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60466;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:41:\"nikldn-HzVHlwvQlyw-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19721;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(793,3081,'_shortpixel_status','2.5700'),(796,3081,'_demo_importer_plus_sites_imported_post','1'),(797,3081,'_demo_importer_enable_for_batch','1'),(798,3081,'_demo_importer_plus_sites_image_hash','d0e7c364d740b37c9411b888f6ae845c8d2da082'),(799,3081,'_elementor_source_image_hash','d0e7c364d740b37c9411b888f6ae845c8d2da082'),(800,3082,'_wp_attached_file','2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg'),(801,3082,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:50:\"2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg\";s:8:\"filesize\";i:93218;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17510;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70122;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41121;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19149;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23563;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13233;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27133;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28895;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52783;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14807;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39705;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9350;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-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:21092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194847;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113891;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68498;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22458;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(802,3082,'_shortpixel_status','2.6100'),(805,3082,'_demo_importer_plus_sites_imported_post','1'),(806,3082,'_demo_importer_enable_for_batch','1'),(807,3082,'_demo_importer_plus_sites_image_hash','7dc2a92f4a8c6f0dea9c18a9182d3523c59d0d99'),(808,3082,'_elementor_source_image_hash','7dc2a92f4a8c6f0dea9c18a9182d3523c59d0d99'),(809,3086,'_wp_attached_file','2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg'),(810,3086,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:52:\"2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg\";s:8:\"filesize\";i:93218;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17510;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107388;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7753;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:70122;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41121;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19149;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23563;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13233;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27133;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28895;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52783;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14807;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39705;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9350;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-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:21092;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:194847;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:113891;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68498;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"davide-cantelli-jpkfc5_d-DI-unsplash-1-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22458;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(811,3086,'_shortpixel_status','2.6100'),(814,3086,'_demo_importer_plus_sites_imported_post','1'),(815,3086,'_demo_importer_enable_for_batch','1'),(816,3086,'_demo_importer_plus_sites_image_hash','633c68a85320ffc7c12619b711a399691eef47f2'),(817,3086,'_elementor_source_image_hash','633c68a85320ffc7c12619b711a399691eef47f2'),(818,3087,'_wp_attached_file','2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg'),(819,3087,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:55:\"2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg\";s:8:\"filesize\";i:113490;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18094;}s:5:\"large\";a:5:{s:4:\"file\";s:56:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:126894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8230;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81156;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47579;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23338;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24952;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16229;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32405;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34587;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64517;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15112;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44076;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10134;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-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:24540;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:57:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:233491;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:56:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:134304;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78860;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:55:\"pirata-studio-film-qt6b5042lrw-unsplash-1-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23614;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(820,3087,'_shortpixel_status','2.6400'),(823,3087,'_demo_importer_plus_sites_imported_post','1'),(824,3087,'_demo_importer_enable_for_batch','1'),(825,3087,'_demo_importer_plus_sites_image_hash','3435bbe1b5664b4b781a7c321a38c57b7d0167b1'),(826,3087,'_elementor_source_image_hash','3435bbe1b5664b4b781a7c321a38c57b7d0167b1'),(827,3138,'_wp_attached_file','2021/11/logo-1.png'),(828,3138,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:306;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-1.png\";s:8:\"filesize\";i:1346;s:5:\"sizes\";a:7:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"logo-1-300x64.png\";s:5:\"width\";i:300;s:6:\"height\";i:64;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:7452;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-1-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1342;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"logo-1-272x65.png\";s:5:\"width\";i:272;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2552;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-1-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1548;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"logo-1-270x65.png\";s:5:\"width\";i:270;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2498;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-1-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1445;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"logo-1-300x65.png\";s:5:\"width\";i:300;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2812;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(829,3138,'_shortpixel_status','2.7300'),(830,3138,'_wxr_import_user_slug','rishidemos'),(831,3138,'_demo_importer_plus_sites_imported_post','1'),(832,3138,'_demo_importer_enable_for_batch','1'),(833,3138,'_demo_importer_plus_sites_image_hash','9414a08cdf00090e904440fdcdb9c8c0267b5ba9'),(834,3138,'_elementor_source_image_hash','9414a08cdf00090e904440fdcdb9c8c0267b5ba9'),(835,3148,'_wp_attached_file','2021/11/logo-2.png'),(836,3148,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-2.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-2-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-2-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-2-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(837,3148,'_shortpixel_status','2.7200'),(838,3148,'_wxr_import_user_slug','rishidemos'),(839,3148,'_demo_importer_plus_sites_imported_post','1'),(840,3148,'_demo_importer_enable_for_batch','1'),(841,3148,'_demo_importer_plus_sites_image_hash','91365222e5667dad6efd36c382fa072de9f55cd7'),(842,3148,'_elementor_source_image_hash','91365222e5667dad6efd36c382fa072de9f55cd7'),(843,3150,'_wp_attached_file','2021/11/logo-3.png'),(844,3150,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-3.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-3-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-3-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-3-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(845,3150,'_shortpixel_status','2.7200'),(846,3150,'_wxr_import_user_slug','rishidemos'),(847,3150,'_demo_importer_plus_sites_imported_post','1'),(848,3150,'_demo_importer_enable_for_batch','1'),(849,3150,'_demo_importer_plus_sites_image_hash','8b6de58814cd28707f197e8549c4554731b0afdb'),(850,3150,'_elementor_source_image_hash','8b6de58814cd28707f197e8549c4554731b0afdb'),(851,3151,'_wp_attached_file','2021/11/logo-4.png'),(852,3151,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:65;s:4:\"file\";s:18:\"2021/11/logo-4.png\";s:8:\"filesize\";i:1226;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"logo-4-150x65.png\";s:5:\"width\";i:150;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1579;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"logo-4-197x65.png\";s:5:\"width\";i:197;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2284;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"logo-4-170x65.png\";s:5:\"width\";i:170;s:6:\"height\";i:65;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2006;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(853,3151,'_shortpixel_status','2.7200'),(854,3151,'_wxr_import_user_slug','rishidemos'),(855,3151,'_demo_importer_plus_sites_imported_post','1'),(856,3151,'_demo_importer_enable_for_batch','1'),(857,3151,'_demo_importer_plus_sites_image_hash','21ad745d694eed4bd4f4dd8d8e72db40d7886579'),(858,3151,'_elementor_source_image_hash','21ad745d694eed4bd4f4dd8d8e72db40d7886579'),(859,3163,'_wp_attached_file','2021/11/cayla-1.jpg'),(860,3163,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:19:\"2021/11/cayla-1.jpg\";s:8:\"filesize\";i:2047;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:{}}}'),(861,3163,'_shortpixel_status','2.5400'),(864,3163,'_demo_importer_plus_sites_imported_post','1'),(865,3163,'_demo_importer_enable_for_batch','1'),(866,3163,'_demo_importer_plus_sites_image_hash','5ba4503b63e9ce2206fcae93fa3adb9dec383dca'),(867,3163,'_elementor_source_image_hash','5ba4503b63e9ce2206fcae93fa3adb9dec383dca'),(868,3187,'_wp_attached_file','2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg'),(869,3187,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:49:\"2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\";s:8:\"filesize\";i:1554;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:{}}}'),(870,3187,'_shortpixel_status','2.6500'),(873,3187,'_demo_importer_plus_sites_imported_post','1'),(874,3187,'_demo_importer_enable_for_batch','1'),(875,3187,'_demo_importer_plus_sites_image_hash','3f0bbb624ad3b79bbcdd2bfe7ab5823c4cc6a3b0'),(876,3187,'_elementor_source_image_hash','3f0bbb624ad3b79bbcdd2bfe7ab5823c4cc6a3b0'),(877,3188,'_wp_attached_file','2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg'),(878,3188,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\";s:8:\"filesize\";i:1637;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:{}}}'),(879,3188,'_shortpixel_status','2.6400'),(882,3188,'_demo_importer_plus_sites_imported_post','1'),(883,3188,'_demo_importer_enable_for_batch','1'),(884,3188,'_demo_importer_plus_sites_image_hash','cd77d0130a96730aa0c324ba0f1e0b69413fa3f1'),(885,3188,'_elementor_source_image_hash','cd77d0130a96730aa0c324ba0f1e0b69413fa3f1'),(886,3189,'_wp_attached_file','2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg'),(887,3189,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\";s:8:\"filesize\";i:1362;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:{}}}'),(888,3189,'_shortpixel_status','2.7000'),(891,3189,'_demo_importer_plus_sites_imported_post','1'),(892,3189,'_demo_importer_enable_for_batch','1'),(893,3189,'_demo_importer_plus_sites_image_hash','0134c7fe9424c0b061e3a21bf8d68151a8e8fca3'),(894,3189,'_elementor_source_image_hash','0134c7fe9424c0b061e3a21bf8d68151a8e8fca3'),(895,3190,'_wp_attached_file','2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg'),(896,3190,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:53:\"2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg\";s:8:\"filesize\";i:1668;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:{}}}'),(897,3190,'_shortpixel_status','2.6300'),(900,3190,'_demo_importer_plus_sites_imported_post','1'),(901,3190,'_demo_importer_enable_for_batch','1'),(902,3190,'_demo_importer_plus_sites_image_hash','146a1ed5dabc2eee935680173ea61b3082704507'),(903,3190,'_elementor_source_image_hash','146a1ed5dabc2eee935680173ea61b3082704507'),(904,3197,'_wp_attached_file','2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg'),(905,3197,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:44:\"2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\";s:8:\"filesize\";i:1643;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:{}}}'),(906,3197,'_shortpixel_status','2.6500'),(909,3197,'_demo_importer_plus_sites_imported_post','1'),(910,3197,'_demo_importer_enable_for_batch','1'),(911,3197,'_demo_importer_plus_sites_image_hash','64627932cf7dec4eca42923d78da137509983341'),(912,3197,'_elementor_source_image_hash','64627932cf7dec4eca42923d78da137509983341'),(913,3198,'_wp_attached_file','2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg'),(914,3198,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:48:\"2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\";s:8:\"filesize\";i:1302;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:{}}}'),(915,3198,'_shortpixel_status','2.6700'),(918,3198,'_demo_importer_plus_sites_imported_post','1'),(919,3198,'_demo_importer_enable_for_batch','1'),(920,3198,'_demo_importer_plus_sites_image_hash','628e5d2b8a0e47cf2c9f453d4cd0c5d3acd6c0f0'),(921,3198,'_elementor_source_image_hash','628e5d2b8a0e47cf2c9f453d4cd0c5d3acd6c0f0'),(922,3199,'_wp_attached_file','2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg'),(923,3199,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:58:\"2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\";s:8:\"filesize\";i:2246;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:{}}}'),(924,3199,'_shortpixel_status','2.5300'),(927,3199,'_demo_importer_plus_sites_imported_post','1'),(928,3199,'_demo_importer_enable_for_batch','1'),(929,3199,'_demo_importer_plus_sites_image_hash','c06bbce71b1902d908d481314f5c82eb2d122b68'),(930,3199,'_elementor_source_image_hash','c06bbce71b1902d908d481314f5c82eb2d122b68'),(931,3200,'_wp_attached_file','2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg'),(932,3200,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:46:\"2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\";s:8:\"filesize\";i:1673;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:{}}}'),(933,3200,'_shortpixel_status','2.5800'),(936,3200,'_demo_importer_plus_sites_imported_post','1'),(937,3200,'_demo_importer_enable_for_batch','1'),(938,3200,'_demo_importer_plus_sites_image_hash','96978d745e41eb12ed97a443b9262509ab8363d1'),(939,3200,'_elementor_source_image_hash','96978d745e41eb12ed97a443b9262509ab8363d1'),(940,3201,'_wp_attached_file','2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg'),(941,3201,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:60;s:6:\"height\";i:60;s:4:\"file\";s:41:\"2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\";s:8:\"filesize\";i:1869;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:{}}}'),(942,3201,'_shortpixel_status','2.5600'),(945,3201,'_demo_importer_plus_sites_imported_post','1'),(946,3201,'_demo_importer_enable_for_batch','1'),(947,3201,'_demo_importer_plus_sites_image_hash','7833982bfbce0e687dec617d37d02540c389eaf8'),(948,3201,'_elementor_source_image_hash','7833982bfbce0e687dec617d37d02540c389eaf8'),(949,3339,'_wp_attached_file','2021/11/screenshot-1.jpg'),(950,3339,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:24:\"2021/11/screenshot-1.jpg\";s:8:\"filesize\";i:33527;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-1-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18793;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8375;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:24:\"screenshot-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40528;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21147;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22335;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15497;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28413;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30140;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35453;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10167;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-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:22338;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21143;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(951,3339,'_shortpixel_status','2.8200'),(954,3339,'_demo_importer_plus_sites_imported_post','1'),(955,3339,'_demo_importer_enable_for_batch','1'),(956,3339,'_demo_importer_plus_sites_image_hash','cfe8e9e1b2a024a6202f224701f6e34bb0972791'),(957,3339,'_elementor_source_image_hash','cfe8e9e1b2a024a6202f224701f6e34bb0972791'),(958,3340,'_wp_attached_file','2021/11/screenshot-2.jpg'),(959,3340,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:570;s:6:\"height\";i:430;s:4:\"file\";s:24:\"2021/11/screenshot-2.jpg\";s:8:\"filesize\";i:19913;s:5:\"sizes\";a:13:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-2-300x226.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:226;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14412;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-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:6752;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:24:\"screenshot-2-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29427;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14643;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-2-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17492;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10247;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-2-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20462;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-2-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21649;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-2-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11527;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-2-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25740;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-2-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8050;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-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:16311;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-2-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16444;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(960,3340,'_shortpixel_status','2.8400'),(963,3340,'_demo_importer_plus_sites_imported_post','1'),(964,3340,'_demo_importer_enable_for_batch','1'),(965,3340,'_demo_importer_plus_sites_image_hash','51d113f90b703a3c1e94bb91331486d7fe1133e7'),(966,3340,'_elementor_source_image_hash','51d113f90b703a3c1e94bb91331486d7fe1133e7'),(967,3359,'_wp_attached_file','2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1-scaled.jpg'),(968,3359,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2048;s:6:\"height\";i:2560;s:4:\"file\";s:57:\"2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1-scaled.jpg\";s:8:\"filesize\";i:1112194;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-240x300.jpg\";s:5:\"width\";i:240;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26045;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-819x1024.jpg\";s:5:\"width\";i:819;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:224666;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10124;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-768x960.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:960;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:199673;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68244;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30827;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33799;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20858;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44345;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47666;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95281;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19728;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61739;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12593;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-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:32971;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1229x1536.jpg\";s:5:\"width\";i:1229;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:457734;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1638x2048.jpg\";s:5:\"width\";i:1638;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:758564;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214599;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118540;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31826;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"edgar-castrejon-1SPu0KT-Ejg-unsplash-1.jpg\";}'),(969,3359,'_shortpixel_status','2.6200'),(972,3359,'_demo_importer_plus_sites_imported_post','1'),(973,3359,'_demo_importer_enable_for_batch','1'),(974,3359,'_demo_importer_plus_sites_image_hash','0e5d990467cbfbc318369cec96acd21e955f08c2'),(975,3359,'_elementor_source_image_hash','0e5d990467cbfbc318369cec96acd21e955f08c2'),(976,3364,'_wp_attached_file','2021/11/eaters-collective-12eHC6FxPyg-unsplash-scaled.jpg'),(977,3364,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:57:\"2021/11/eaters-collective-12eHC6FxPyg-unsplash-scaled.jpg\";s:8:\"filesize\";i:446044;s:5:\"sizes\";a:20:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15819;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"eaters-collective-12eHC6FxPyg-unsplash-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107483;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7556;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68582;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42168;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20761;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22119;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14936;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28537;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30563;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56779;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13369;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38363;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9170;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21843;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"eaters-collective-12eHC6FxPyg-unsplash-1536x1025.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:202415;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"eaters-collective-12eHC6FxPyg-unsplash-2048x1367.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:315748;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:51:\"eaters-collective-12eHC6FxPyg-unsplash-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:118016;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68787;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"eaters-collective-12eHC6FxPyg-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20841;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"eaters-collective-12eHC6FxPyg-unsplash.jpg\";}'),(978,3364,'_shortpixel_status','2.7400'),(981,3364,'_demo_importer_plus_sites_imported_post','1'),(982,3364,'_demo_importer_enable_for_batch','1'),(983,3364,'_demo_importer_plus_sites_image_hash','0e8ceae27d178734a69c4dee1ff851abaf609e87'),(984,3364,'_elementor_source_image_hash','0e8ceae27d178734a69c4dee1ff851abaf609e87'),(985,3462,'_wp_attached_file','2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg'),(986,3462,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:45:\"2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg\";s:8:\"filesize\";i:24777;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13863;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6479;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15440;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17423;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10950;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18821;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10703;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7621;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16463;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"brooke-cagle-8jp-6SjVibM-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15551;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(987,3462,'_shortpixel_status','2.6600'),(990,3462,'_demo_importer_plus_sites_imported_post','1'),(991,3462,'_demo_importer_enable_for_batch','1'),(992,3462,'_demo_importer_plus_sites_image_hash','fac7ea101ff2f7309413c77433ec17ece726adf9'),(993,3462,'_elementor_source_image_hash','fac7ea101ff2f7309413c77433ec17ece726adf9'),(994,3463,'_wp_attached_file','2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg'),(995,3463,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:40:\"2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg\";s:8:\"filesize\";i:31734;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16802;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7099;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18684;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21217;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12648;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24153;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12321;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8639;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20300;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:40:\"elevate-iv6yNy7oBqQ-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18073;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(996,3463,'_shortpixel_status','2.6400'),(999,3463,'_demo_importer_plus_sites_imported_post','1'),(1000,3463,'_demo_importer_enable_for_batch','1'),(1001,3463,'_demo_importer_plus_sites_image_hash','edcac07111c858b7f08e7966c60d2fee4274a872'),(1002,3463,'_elementor_source_image_hash','edcac07111c858b7f08e7966c60d2fee4274a872'),(1003,3464,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg'),(1004,3464,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:284;s:4:\"file\";s:50:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg\";s:8:\"filesize\";i:23830;s:5:\"sizes\";a:10:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x230.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:230;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13376;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6346;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-272x284.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14660;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16475;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10260;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-355x284.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17859;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10419;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7448;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-300x284.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15514;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14810;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1005,3464,'_shortpixel_status','2.6600'),(1008,3464,'_demo_importer_plus_sites_imported_post','1'),(1009,3464,'_demo_importer_enable_for_batch','1'),(1010,3464,'_demo_importer_plus_sites_image_hash','96f828f0c8d018905eccf525f7029138aab573bf'),(1011,3464,'_elementor_source_image_hash','96f828f0c8d018905eccf525f7029138aab573bf'),(1012,3704,'_wp_attached_file','2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg'),(1013,3704,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:48:\"2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg\";s:8:\"filesize\";i:2638;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:{}}}'),(1014,3704,'_shortpixel_status','2.6500'),(1017,3704,'_demo_importer_plus_sites_imported_post','1'),(1018,3704,'_demo_importer_enable_for_batch','1'),(1019,3704,'_demo_importer_plus_sites_image_hash','cefe043b0836be5c933160d1bd49f43ff08492fe'),(1020,3704,'_elementor_source_image_hash','cefe043b0836be5c933160d1bd49f43ff08492fe'),(1021,3705,'_wp_attached_file','2021/11/552963-PK36W8-345.jpg'),(1022,3705,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:29:\"2021/11/552963-PK36W8-345.jpg\";s:8:\"filesize\";i:3269;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:{}}}'),(1023,3705,'_shortpixel_status','2.6000'),(1026,3705,'_demo_importer_plus_sites_imported_post','1'),(1027,3705,'_demo_importer_enable_for_batch','1'),(1028,3705,'_demo_importer_plus_sites_image_hash','9b99d3be5d2c45920f12bbbc03035dca853ff50c'),(1029,3705,'_elementor_source_image_hash','9b99d3be5d2c45920f12bbbc03035dca853ff50c'),(1030,3706,'_wp_attached_file','2021/11/2899356.jpg'),(1031,3706,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:19:\"2021/11/2899356.jpg\";s:8:\"filesize\";i:2720;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:{}}}'),(1032,3706,'_shortpixel_status','2.6400'),(1035,3706,'_demo_importer_plus_sites_imported_post','1'),(1036,3706,'_demo_importer_enable_for_batch','1'),(1037,3706,'_demo_importer_plus_sites_image_hash','eda482eff649a04532a0205b95bde1c457049586'),(1038,3706,'_elementor_source_image_hash','eda482eff649a04532a0205b95bde1c457049586'),(1039,3707,'_wp_attached_file','2021/11/alexandra-lammerink-1-1.jpg'),(1040,3707,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:35:\"2021/11/alexandra-lammerink-1-1.jpg\";s:8:\"filesize\";i:2800;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:{}}}'),(1041,3707,'_shortpixel_status','2.6500'),(1044,3707,'_demo_importer_plus_sites_imported_post','1'),(1045,3707,'_demo_importer_enable_for_batch','1'),(1046,3707,'_demo_importer_plus_sites_image_hash','1a0bdd787a42b792b9f00191e2a9674f38de701f'),(1047,3707,'_elementor_source_image_hash','1a0bdd787a42b792b9f00191e2a9674f38de701f'),(1048,3708,'_wp_attached_file','2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg'),(1049,3708,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:60:\"2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg\";s:8:\"filesize\";i:3187;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:{}}}'),(1050,3708,'_shortpixel_status','2.5900'),(1053,3708,'_demo_importer_plus_sites_imported_post','1'),(1054,3708,'_demo_importer_enable_for_batch','1'),(1055,3708,'_demo_importer_plus_sites_image_hash','2c8956cbabda5d8219363dd8e6e787ad996a09b2'),(1056,3708,'_elementor_source_image_hash','2c8956cbabda5d8219363dd8e6e787ad996a09b2'),(1057,3709,'_wp_attached_file','2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg'),(1058,3709,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:57:\"2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg\";s:8:\"filesize\";i:2657;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:{}}}'),(1059,3709,'_shortpixel_status','2.6300'),(1062,3709,'_demo_importer_plus_sites_imported_post','1'),(1063,3709,'_demo_importer_enable_for_batch','1'),(1064,3709,'_demo_importer_plus_sites_image_hash','b6487c7dfd2f6c967c5565bc72bdaaecc56d5d01'),(1065,3709,'_elementor_source_image_hash','b6487c7dfd2f6c967c5565bc72bdaaecc56d5d01'),(1066,3710,'_wp_attached_file','2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg'),(1067,3710,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:44:\"2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg\";s:8:\"filesize\";i:2540;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:{}}}'),(1068,3710,'_shortpixel_status','2.6600'),(1071,3710,'_demo_importer_plus_sites_imported_post','1'),(1072,3710,'_demo_importer_enable_for_batch','1'),(1073,3710,'_demo_importer_plus_sites_image_hash','d006d71520cb356b1827dab83a5d563b2392dab7'),(1074,3710,'_elementor_source_image_hash','d006d71520cb356b1827dab83a5d563b2392dab7'),(1075,3711,'_wp_attached_file','2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg'),(1076,3711,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:90;s:6:\"height\";i:90;s:4:\"file\";s:85:\"2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg\";s:8:\"filesize\";i:2780;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:{}}}'),(1077,3711,'_shortpixel_status','2.6500'),(1080,3711,'_demo_importer_plus_sites_imported_post','1'),(1081,3711,'_demo_importer_enable_for_batch','1'),(1082,3711,'_demo_importer_plus_sites_image_hash','90a2746cdae60d0a755f179a96532ff091b746ae'),(1083,3711,'_elementor_source_image_hash','90a2746cdae60d0a755f179a96532ff091b746ae'),(1084,3789,'_wp_attached_file','2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg'),(1085,3789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:52:\"2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg\";s:8:\"filesize\";i:142773;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"emiliano-vittoriosi-OFismyezPnY-unsplash-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10527;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79604;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10130;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50274;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60834;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29122;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33154;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20058;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40637;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43204;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79241;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19791;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58614;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12433;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30980;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1536x440.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:149424;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"emiliano-vittoriosi-OFismyezPnY-unsplash-1170x550.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:163475;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102258;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"emiliano-vittoriosi-OFismyezPnY-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31352;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1086,3789,'_shortpixel_status','2.8200'),(1089,3789,'_demo_importer_plus_sites_imported_post','1'),(1090,3789,'_demo_importer_enable_for_batch','1'),(1091,3789,'_demo_importer_plus_sites_image_hash','dc84ad157f13f290729e1ce73be4bd40c9864db1'),(1092,3789,'_elementor_source_image_hash','dc84ad157f13f290729e1ce73be4bd40c9864db1'),(1093,3878,'_wp_attached_file','2021/11/jason-leung-AUAuEgUxg-5.jpg'),(1094,3878,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:550;s:4:\"file\";s:35:\"2021/11/jason-leung-AUAuEgUxg-5.jpg\";s:8:\"filesize\";i:71702;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:34:\"jason-leung-AUAuEgUxg-5-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5955;}s:5:\"large\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1024x293.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36894;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:5159;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22356;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31320;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14063;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14740;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9660;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20052;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21635;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44889;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9123;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26128;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6179;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14675;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1536x440.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81618;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:36:\"jason-leung-AUAuEgUxg-5-1170x550.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:550;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90970;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:55984;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:35:\"jason-leung-AUAuEgUxg-5-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13752;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1095,3878,'_shortpixel_status','2.9000'),(1098,3878,'_demo_importer_plus_sites_imported_post','1'),(1099,3878,'_demo_importer_enable_for_batch','1'),(1100,3878,'_demo_importer_plus_sites_image_hash','44bf0c0e2817891928e752eee71f8924aaa85a03'),(1101,3878,'_elementor_source_image_hash','44bf0c0e2817891928e752eee71f8924aaa85a03'),(1102,4079,'_wp_attached_file','2021/11/img.jpg'),(1103,4079,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:951;s:4:\"file\";s:15:\"2021/11/img.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:15:\"img-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:15:\"img-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6159;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:15:\"img-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29179;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:15:\"img-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15708;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:15:\"img-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16617;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:15:\"img-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11425;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:15:\"img-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20066;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:15:\"img-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21444;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:15:\"img-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38551;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:15:\"img-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10659;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:15:\"img-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27226;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:15:\"img-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7163;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:15:\"img-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15889;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:15:\"img-735x650.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52688;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:15:\"img-735x520.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:15:\"img-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1104,4079,'_shortpixel_status','2.9100'),(1107,4079,'_demo_importer_plus_sites_imported_post','1'),(1108,4079,'_demo_importer_enable_for_batch','1'),(1109,4079,'_demo_importer_plus_sites_image_hash','11b734bb01c3a040bc5ba5805bc20b4cdd358401'),(1110,4079,'_elementor_source_image_hash','11b734bb01c3a040bc5ba5805bc20b4cdd358401'),(1111,4080,'_wp_attached_file','2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg'),(1112,4080,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:735;s:6:\"height\";i:951;s:4:\"file\";s:44:\"2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg\";s:8:\"filesize\";i:30302;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-232x300.jpg\";s:5:\"width\";i:232;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12798;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6159;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29179;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15708;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16617;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11425;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20066;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21444;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38551;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10659;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27226;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7163;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15889;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-735x650.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52688;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-735x520.jpg\";s:5:\"width\";i:735;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:44:\"jason-leung-i-LbNM7B66I-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15668;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1113,4080,'_shortpixel_status','2.9100'),(1116,4080,'_demo_importer_plus_sites_imported_post','1'),(1117,4080,'_demo_importer_enable_for_batch','1'),(1118,4080,'_demo_importer_plus_sites_image_hash','d8e08774696c4085b632dc877c20b2721da98ef4'),(1119,4080,'_elementor_source_image_hash','d8e08774696c4085b632dc877c20b2721da98ef4'),(1120,4106,'_wp_attached_file','2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg'),(1121,4106,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:816;s:4:\"file\";s:47:\"2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg\";s:8:\"filesize\";i:55099;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-221x300.jpg\";s:5:\"width\";i:221;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18784;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8900;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48628;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22952;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27556;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16307;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31875;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33951;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:62133;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17205;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:46094;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10658;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-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:25711;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-600x650.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74069;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-600x520.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:68697;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:47:\"taylor-kiser-POFG828-GQc-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26186;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1122,4106,'_shortpixel_status','2.3600'),(1125,4106,'_demo_importer_plus_sites_imported_post','1'),(1126,4106,'_demo_importer_enable_for_batch','1'),(1127,4106,'_demo_importer_plus_sites_image_hash','f93050af02d5a14b22e86e33c235a5ea47ce6837'),(1128,4106,'_elementor_source_image_hash','f93050af02d5a14b22e86e33c235a5ea47ce6837'),(1129,4209,'_wp_attached_file','2021/11/Logo-5.png'),(1130,4209,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:18:\"2021/11/Logo-5.png\";s:8:\"filesize\";i:2452;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:18:\"Logo-5-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4742;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:18:\"Logo-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4347;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:18:\"Logo-5-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4852;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-272x200.png\";s:5:\"width\";i:272;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2512;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:18:\"Logo-5-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3632;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-197x200.png\";s:5:\"width\";i:197;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2215;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:18:\"Logo-5-355x200.png\";s:5:\"width\";i:355;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3389;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:18:\"Logo-5-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3632;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:18:\"Logo-5-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5228;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:18:\"Logo-5-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6663;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:18:\"Logo-5-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5228;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:18:\"Logo-5-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:5241;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:18:\"Logo-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2719;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:18:\"Logo-5-360x200.png\";s:5:\"width\";i:360;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3468;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1131,4209,'_shortpixel_status','2.7300'),(1132,4209,'_wxr_import_user_slug','rishidemos'),(1133,4209,'_demo_importer_plus_sites_imported_post','1'),(1134,4209,'_demo_importer_enable_for_batch','1'),(1135,4209,'_demo_importer_plus_sites_image_hash','479c92693f961457fdfbcd685fb6900cb75ee707'),(1136,4209,'_elementor_source_image_hash','479c92693f961457fdfbcd685fb6900cb75ee707'),(1137,4210,'_wp_attached_file','2021/11/Logo-Whhite.png'),(1138,4210,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:600;s:6:\"height\";i:200;s:4:\"file\";s:23:\"2021/11/Logo-Whhite.png\";s:8:\"filesize\";i:2290;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4493;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3138;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-500x200.png\";s:5:\"width\";i:500;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4378;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-272x200.png\";s:5:\"width\";i:272;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2028;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3209;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-197x200.png\";s:5:\"width\";i:197;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:1698;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-355x200.png\";s:5:\"width\";i:355;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2981;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-370x200.png\";s:5:\"width\";i:370;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3209;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4743;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-270x180.png\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:6208;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-570x200.png\";s:5:\"width\";i:570;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4743;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-170x170.png\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4435;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2239;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:23:\"Logo-Whhite-360x200.png\";s:5:\"width\";i:360;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:3054;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1139,4210,'_shortpixel_status','2.7000'),(1140,4210,'_wxr_import_user_slug','rishidemos'),(1141,4210,'_demo_importer_plus_sites_imported_post','1'),(1142,4210,'_demo_importer_enable_for_batch','1'),(1143,4210,'_demo_importer_plus_sites_image_hash','42c4d5cfbb07115d81ba96b005c9a2fd98d480c6'),(1144,4210,'_elementor_source_image_hash','42c4d5cfbb07115d81ba96b005c9a2fd98d480c6'),(1145,4211,'_elementor_edit_mode','builder'),(1146,4211,'_elementor_template_type','kit'),(1147,4211,'_elementor_version','3.4.7'),(1148,4211,'_wp_page_template','default'),(1149,4211,'_elementor_page_settings','a:14:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:1096:{i:0;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:8;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:9;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:10;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:11;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:12;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:13;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:14;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:15;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:16;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:17;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:18;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:19;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:20;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:21;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:22;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:23;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:25;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:26;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:27;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:28;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:29;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:30;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:31;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:32;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:33;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:34;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:35;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:36;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:37;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:38;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:39;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:40;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:41;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:42;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:43;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:44;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:45;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:46;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:47;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:48;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:49;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:50;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:51;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:52;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:53;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:54;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:55;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:56;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:57;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:58;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:59;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:60;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:61;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:62;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:63;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:64;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:65;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:66;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:67;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:68;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:69;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:70;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:71;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:72;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:73;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:74;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:75;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:76;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:77;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:78;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:79;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:80;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:81;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:82;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:83;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:84;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:85;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:86;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:87;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:88;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:89;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:90;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:91;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:92;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:93;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:94;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:95;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:96;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:97;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:98;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:99;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:100;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:101;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:102;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:103;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:104;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:105;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:106;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:107;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:108;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:109;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:110;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:111;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:112;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:113;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:114;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:115;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:116;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:117;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:118;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:119;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:120;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:121;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:122;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:123;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:124;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:125;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:126;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:127;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:128;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:129;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:130;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:131;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:132;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:133;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:134;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:135;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:136;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:137;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:138;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:139;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:140;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:141;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:142;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:143;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:144;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:145;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:146;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:147;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:148;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:149;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:150;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:151;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:152;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:153;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:154;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:155;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:156;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:157;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:158;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:159;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:160;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:161;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:162;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:163;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:164;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:165;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:166;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:167;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:168;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:169;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:170;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:171;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:172;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:173;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:174;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:175;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:176;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:177;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:178;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:179;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:180;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:181;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:182;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:183;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:184;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:185;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:186;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:187;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:188;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:189;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:190;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:191;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:192;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:193;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:194;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:195;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:196;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:197;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:198;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:199;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:200;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:201;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:202;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:203;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:204;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:205;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:206;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:207;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:208;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:209;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:210;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:211;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:212;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:213;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:214;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:215;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:216;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:217;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:218;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:219;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:220;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:221;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:222;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:223;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:224;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:225;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:226;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:227;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:228;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:229;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:230;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:231;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:232;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:233;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:234;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:235;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:236;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:237;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:238;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:239;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:240;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:241;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:242;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:243;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:244;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:245;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:246;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:247;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:248;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:249;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:250;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:251;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:252;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:253;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:254;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:255;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:256;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:257;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:258;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:259;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:260;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:261;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:262;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:263;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:264;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:265;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:266;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:267;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:268;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:269;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:270;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:271;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:272;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:273;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:274;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:275;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:276;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:277;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:278;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:279;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:280;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:281;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:282;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:283;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:284;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:285;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:286;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:287;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:288;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:289;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:290;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:291;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:292;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:293;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:294;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:295;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:296;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:297;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:298;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:299;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:300;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:301;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:302;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:303;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:304;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:305;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:306;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:307;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:308;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:309;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:310;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:311;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:312;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:313;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:314;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:315;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:316;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:317;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:318;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:319;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:320;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:321;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:322;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:323;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:324;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:325;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:326;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:327;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:328;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:329;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:330;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:331;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:332;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:333;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:334;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:335;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:336;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:337;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:338;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:339;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:340;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:341;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:342;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:343;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:344;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:345;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:346;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:347;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:348;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:349;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:350;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:351;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:352;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:353;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:354;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:355;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:356;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:357;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:358;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:359;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:360;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:361;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:362;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:363;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:364;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:365;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:366;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:367;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:368;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:369;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:370;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:371;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:372;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:373;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:374;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:375;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:376;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:377;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:378;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:379;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:380;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:381;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:382;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:383;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:384;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:385;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:386;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:387;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:388;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:389;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:390;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:391;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:392;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:393;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:394;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:395;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:396;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:397;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:398;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:399;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:400;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:401;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:402;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:403;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:404;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:405;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:406;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:407;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:408;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:409;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:410;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:411;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:412;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:413;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:414;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:415;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:416;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:417;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:418;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:419;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:420;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:421;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:422;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:423;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:424;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:425;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:426;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:427;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:428;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:429;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:430;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:431;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:432;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:433;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:434;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:435;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:436;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:437;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:438;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:439;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:440;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:441;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:442;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:443;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:444;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:445;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:446;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:447;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:448;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:449;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:450;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:451;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:452;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:453;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:454;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:455;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:456;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:457;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:458;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:459;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:460;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:461;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:462;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:463;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:464;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:465;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:466;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:467;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:468;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:469;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:470;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:471;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:472;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:473;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:474;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:475;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:476;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:477;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:478;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:479;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:480;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:481;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:482;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:483;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:484;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:485;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:486;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:487;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:488;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:489;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:490;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:491;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:492;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:493;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:494;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:495;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:496;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:497;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:498;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:499;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:500;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:501;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:502;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:503;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:504;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:505;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:506;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:507;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:508;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:509;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:510;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:511;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:512;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:513;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:514;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:515;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:516;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:517;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:518;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:519;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:520;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:521;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:522;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:523;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:524;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:525;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:526;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:527;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:528;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:529;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:530;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:531;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:532;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:533;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:534;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:535;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:536;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:537;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:538;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:539;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:540;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:541;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:542;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:543;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:544;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:545;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:546;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:547;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:548;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:549;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:550;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:551;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:552;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:553;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:554;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:555;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:556;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:557;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:558;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:559;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:560;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:561;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:562;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:563;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:564;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:565;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:566;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:567;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:568;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:569;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:570;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:571;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:572;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:573;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:574;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:575;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:576;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:577;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:578;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:579;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:580;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:581;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:582;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:583;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:584;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:585;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:586;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:587;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:588;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:589;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:590;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:591;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:592;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:593;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:594;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:595;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:596;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:597;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:598;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:599;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:600;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:601;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:602;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:603;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:604;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:605;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:606;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:607;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:608;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:609;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:610;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:611;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:612;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:613;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:614;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:615;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:616;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:617;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:618;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:619;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:620;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:621;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:622;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:623;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:624;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:625;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:626;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:627;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:628;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:629;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:630;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:631;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:632;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:633;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:634;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:635;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:636;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:637;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:638;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:639;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:640;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:641;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:642;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:643;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:644;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:645;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:646;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:647;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:648;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:649;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:650;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:651;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:652;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:653;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:654;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:655;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:656;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:657;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:658;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:659;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:660;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:661;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:662;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:663;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:664;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:665;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:666;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:667;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:668;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:669;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:670;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:671;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:672;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:673;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:674;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:675;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:676;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:677;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:678;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:679;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:680;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:681;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:682;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:683;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:684;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:685;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:686;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:687;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:688;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:689;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:690;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:691;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:692;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:693;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:694;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:695;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:696;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:697;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:698;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:699;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:700;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:701;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:702;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:703;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:704;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:705;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:706;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:707;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:708;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:709;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:710;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:711;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:712;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:713;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:714;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:715;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:716;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:717;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:718;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:719;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:720;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:721;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:722;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:723;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:724;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:725;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:726;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:727;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:728;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:729;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:730;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:731;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:732;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:733;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:734;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:735;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:736;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:737;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:738;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:739;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:740;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:741;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:742;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:743;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:744;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:745;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:746;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:747;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:748;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:749;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:750;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:751;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:752;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:753;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:754;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:755;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:756;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:757;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:758;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:759;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:760;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:761;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:762;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:763;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:764;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:765;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:766;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:767;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:768;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:769;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:770;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:771;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:772;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:773;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:774;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:775;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:776;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:777;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:778;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:779;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:780;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:781;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:782;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:783;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:784;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:785;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:786;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:787;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:788;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:789;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:790;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:791;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:792;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:793;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:794;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:795;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:796;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:797;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:798;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:799;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:800;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:801;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:802;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:803;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:804;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:805;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:806;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:807;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:808;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:809;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:810;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:811;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:812;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:813;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:814;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:815;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:816;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:817;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:818;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:819;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:820;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:821;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:822;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:823;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:824;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:825;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:826;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:827;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:828;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:829;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:830;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:831;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:832;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:833;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:834;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:835;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:836;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:837;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:838;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:839;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:840;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:841;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:842;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:843;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:844;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:845;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:846;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:847;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:848;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:849;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:850;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:851;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:852;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:853;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:854;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:855;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:856;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:857;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:858;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:859;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:860;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:861;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:862;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:863;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:864;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:865;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:866;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:867;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:868;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:869;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:870;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:871;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:872;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:873;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:874;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:875;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:876;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:877;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:878;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:879;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:880;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:881;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:882;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:883;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:884;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:885;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:886;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:887;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:888;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:889;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:890;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:891;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:892;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:893;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:894;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:895;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:896;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:897;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:898;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:899;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:900;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:901;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:902;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:903;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:904;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:905;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:906;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:907;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:908;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:909;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:910;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:911;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:912;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:913;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:914;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:915;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:916;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:917;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:918;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:919;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:920;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:921;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:922;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:923;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:924;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:925;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:926;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:927;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:928;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:929;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:930;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:931;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:932;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:933;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:934;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:935;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:936;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:937;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:938;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:939;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:940;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:941;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:942;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:943;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:944;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:945;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:946;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:947;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:948;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:949;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:950;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:951;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:952;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:953;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:954;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:955;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:956;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:957;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:958;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:959;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:960;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:961;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:962;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:963;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:964;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:965;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:966;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:967;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:968;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:969;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:970;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:971;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:972;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:973;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:974;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:975;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:976;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:977;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:978;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:979;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:980;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:981;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:982;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:983;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:984;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:985;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:986;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:987;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:988;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:989;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:990;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:991;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:992;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:993;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:994;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:995;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:996;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:997;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:998;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:999;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1000;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1001;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1002;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1003;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1004;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1005;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1006;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1007;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1008;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1009;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1010;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1011;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1012;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1013;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1014;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1015;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1016;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1017;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1018;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1019;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1020;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1021;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1022;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1023;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1024;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1025;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1026;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1027;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1028;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1029;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1030;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1031;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1032;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1033;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1034;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1035;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1036;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1037;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1038;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1039;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1040;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1041;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1042;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1043;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1044;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1045;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1046;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1047;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1048;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1049;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1050;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1051;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1052;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1053;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1054;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1055;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1056;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1057;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1058;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1059;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1060;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1061;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1062;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1063;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1064;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1065;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1066;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1067;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1068;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1069;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1070;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1071;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1072;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1073;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1074;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1075;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1076;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1077;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1078;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1079;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1080;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1081;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1082;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1083;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1084;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1085;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1086;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1087;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:1088;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1089;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:1090;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:1091;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:1092;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:1093;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:1094;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:1095;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:17:\"system_typography\";a:4:{i:0;a:7:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:1;a:7:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"Restaurant\";s:16:\"site_description\";s:27:\"Rishi Theme Restaurant Demo\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:12:\"rishi_colors\";a:8:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1190;s:5:\"sizes\";a:0:{}}s:21:\"space_between_widgets\";a:6:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}s:6:\"column\";s:1:\"0\";s:3:\"row\";s:1:\"0\";s:8:\"isLinked\";b:1;}}'),(1150,4211,'_elementor_data','[]'),(1151,4211,'_elementor_page_assets','a:0:{}'),(1152,4211,'_wxr_import_user_slug','rishidemos'),(1153,4211,'_demo_importer_plus_sites_imported_post','1'),(1154,4211,'_demo_importer_enable_for_batch','1'),(1155,85,'_elementor_edit_mode','builder'),(1156,85,'_elementor_template_type','page'),(1157,85,'_elementor_version','3.1.1'),(1158,85,'_elementor_data','[{\"id\":\"35e84f24\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"30\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/bg.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"440\",\"right\":\"0\",\"bottom\":\"334\",\"left\":\"0\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4111a01a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46e8401a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6237c76c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.589,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"cf74508\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4c77a9f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking.\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7869b104\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"18\",\"right\":\"40\",\"bottom\":\"18\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"60a42616\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.368,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"58462e99\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53b44296\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74ee2155\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cdccfae\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6d27e19f\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6d2d3b14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"601894ed\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9d8f985\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53491d00\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"730acd3a\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60ad3a5f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"32\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/refresh.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"38ded7a1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"221c8998\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"376ac49b\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68748f67\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"23d02368\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"30359e31\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"65401419\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"16fa5db1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1c7bb5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5f62124d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout. The point of using Lorem Ipsum is<br\\/> that it has a more-or-less normal distribution.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"21d016b8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30dfa1ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6ae2ab8c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"634ff4dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4395980a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"2e88ad33\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":840,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64ba6444\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39b4d1e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5ed019c3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"color\":\"#FF785B\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"34e1d75f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1154cece\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60afa9f7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1cd393a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"582185b4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"36\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/offer.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"701f4cc\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"10c5543a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2c30684e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"46f1a282\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e93e394\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"47dfe8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"466d18c4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"779225af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"64928bb7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2c277cdb\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"594e59ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3583e5e6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"78ae891a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1b969a52\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1577415f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2eec17f3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"17f85ac7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4ad652f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B0D\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"66faf2fe\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5dbea98f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8114e6a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"15acf915\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2158e17d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6094102\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48896879\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"630c0594\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"40\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/cayla1-w6ftFbPCs9I-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"321ea834\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fca7e03\",\"elType\":\"widget\",\"settings\":{\"title\":\"Mussels Soup\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5d4f7390\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"20ed5356\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"78e72799\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"674d7e91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5358481\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"72fb0ca4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"22e8d992\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"42\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/jason-leung-AUAuEgUxg5Q-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7be72f9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5d482612\",\"elType\":\"widget\",\"settings\":{\"title\":\"Sicilian Meatballs\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"644e73ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"6236fed4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"587c7156\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"149a8d1a\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50e47aca\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15cf8604\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e1a8f14\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"77426369\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"43\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/malin-strandvall-qw1hNqrMNwI-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"719fec36\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"50d3c366\",\"elType\":\"widget\",\"settings\":{\"title\":\"Italian Spaghetti\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"22a785d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"7d7ecade\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"263f0231\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37ee01b5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48258776\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"68932704\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"67935cdf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"44\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3c9d18bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3d3a85e5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Seafood Salad\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"76286da1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"74ec7775\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65065b56\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3a38326e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d56b9c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42909a80\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"64d3bf6e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"c4446f4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"45\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"f6297be\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63268947\",\"elType\":\"widget\",\"settings\":{\"title\":\"Beef Burger\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9eed853\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"36c6d3e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"58bbb206\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5334d185\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"93c6338\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4df60642\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"23c25ff5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"46\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"429c7d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45bbd884\",\"elType\":\"widget\",\"settings\":{\"title\":\"Roasted Chicken\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"293abf24\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"60bea179\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"46ab1c0d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"598c1286\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14a7da09\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4cbf0990\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29df4770\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1b756900\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"47\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/cheesecake-stuffed-strawberries-500x500-1.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2a9c0ad8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"8cbefbe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Stuffed Strawberry\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3a1c391a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"98a3f17\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"39950cfb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"66dacb43\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"30807508\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"42d52a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6677dd11\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"48\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/jennifer-burk-gwBcamFtPr4-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"64869514\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b1a1efe\",\"elType\":\"widget\",\"settings\":{\"title\":\"Grilled Fish\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"25fdfede\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"e4b99f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53e93431\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"59e5ba6c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1380,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ef2d98b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5fd4be3b\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"98dacc6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49bc8330\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"49\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/amirali-mirhashemian-4gmBIFraSuE-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"687163dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"106a2869\",\"elType\":\"widget\",\"settings\":{\"title\":\"Scrambled Eggs in puff Pastry\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3402a515\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"3775d51\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3cdef3de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6132b68d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7e8577d6\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"157a515f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":16,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"438e0374\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"50\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/tim-chow-MhpxHv0FKtE-unsplash.png\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"2b39099f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":69.543,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_image\":{\"id\":\"41\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Repeat-Grid-1-1.png\"},\"background_position\":\"initial\",\"background_xpos\":{\"unit\":\"px\",\"size\":130,\"sizes\":[]},\"background_ypos\":{\"unit\":\"px\",\"size\":33,\"sizes\":[]},\"background_repeat\":\"no-repeat\",\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"343d8340\",\"elType\":\"widget\",\"settings\":{\"title\":\"Soft-Boiled Organic Egg\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_background\":\"classic\",\"_background_color\":\"#FFF8F7\",\"_background_repeat\":\"repeat-x\",\"_element_width\":\"auto\",\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2c89b744\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader.\",\"text_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"bc84208\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":14.062,\"background_background\":\"classic\",\"background_color\":\"#FFF8F7\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"51c6cb6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"$20.10\",\"align\":\"right\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"600\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"71cd8f61\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_color\":\"#FF785B0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"52532485\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7279952d\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"16\",\"right\":\"40\",\"bottom\":\"16\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"center\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"248dc79a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3811fec5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.67,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7fdf184e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40a86e13\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"430946c2\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"26ffa75d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.244,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45ff9ccf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash.png\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e25e7b2\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"19f1746f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"48525bc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35a70ec2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1b18383c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"568db89e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7e24a3f7\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":700,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"78\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/testimonial-bg-1.png\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1a70920c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"56f1af69\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"29db8995\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"bcb743\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"633c4042\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"39c553b1\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"63752892\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"70b5a576\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4bc9cfa5\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"49d221e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44576a54\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"298db9c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"28547994\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3556ae2e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"481672ab\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"5ea8a358\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"69965b54\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"27541f23\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":66.688,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"33bc388b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3e8e89c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b6a0016\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"547998bf\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1d6c09dc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"706779dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8cb6214\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"337a3f88\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5784df49\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"5e79d043\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":33.031,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"a4aaad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1b925b2b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"748781f2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"65edbefd\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1159,85,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:28;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:28;s:5:\"align\";i:13;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:11:\"title_color\";i:28;s:21:\"typography_typography\";i:28;s:22:\"typography_font_family\";i:28;s:20:\"typography_font_size\";i:28;s:22:\"typography_font_weight\";i:28;s:22:\"typography_line_height\";i:28;s:25:\"typography_letter_spacing\";i:28;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:8;s:8:\"_padding\";i:16;}s:19:\"_section_background\";a:3:{s:22:\"_background_background\";i:10;s:17:\"_background_color\";i:10;s:18:\"_background_repeat\";i:10;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:10;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:44;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:44;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:10:\"text_color\";i:34;s:5:\"align\";i:24;s:21:\"typography_typography\";i:38;s:22:\"typography_font_family\";i:38;s:20:\"typography_font_size\";i:38;s:22:\"typography_font_weight\";i:38;s:22:\"typography_line_height\";i:38;s:25:\"typography_letter_spacing\";i:38;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:17;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}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:2:{s:4:\"text\";i:3;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:3;s:25:\"typography_letter_spacing\";i:3;s:13:\"border_radius\";i:3;s:12:\"text_padding\";i:3;s:28:\"text_shadow_text_shadow_type\";i:1;}}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:70;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:70;s:21:\"space_between_widgets\";i:42;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:27;s:6:\"margin\";i:6;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:7:{s:21:\"background_background\";i:21;s:16:\"background_image\";i:10;s:19:\"background_position\";i:10;s:15:\"background_xpos\";i:10;s:15:\"background_ypos\";i:10;s:17:\"background_repeat\";i:10;s:16:\"background_color\";i:11;}s:14:\"section_border\";a:4:{s:13:\"border_radius\";i:1;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:35;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:23;}s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:16;s:13:\"content_width\";i:8;s:6:\"layout\";i:2;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:13;s:16:\"background_image\";i:3;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:10;}s:14:\"section_border\";a:6:{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:\"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:16;s:6:\"margin\";i:13;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:21;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:21;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:3;}}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: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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:5:\"color\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}}'),(1160,85,'_wxr_import_user_slug','rishidemos'),(1161,85,'_demo_importer_plus_sites_imported_post','1'),(1162,85,'_demo_importer_enable_for_batch','1'),(1163,103,'_elementor_edit_mode','builder'),(1164,103,'_elementor_template_type','page'),(1165,103,'_elementor_version','3.1.1'),(1166,103,'_elementor_data','[{\"id\":\"22ca024a\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":95,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/about-bg.png\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"293\",\"right\":\"0\",\"bottom\":\"183\",\"left\":\"0\",\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"76e18072\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"449921e7\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"148fdee9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e32f9f1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"110\",\"right\":\"0\",\"bottom\":\"110\",\"left\":\"0\",\"isLinked\":false},\"background_color\":\"#FF785B00\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"6c5991d5\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2a6b3134\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d719cdf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout. The point of using Lorem Ipsum is<br\\/> that it has a more-or-less normal distribution.\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2623363f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"540f21d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"14931db5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"34\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"72d99f34\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"170a89fe\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"35\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"50331692\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"60eb6c7d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4e8fe554\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"4010ade\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5e500a44\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"30b23e47\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7d373c1e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":96,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"68d5953f\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":840,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"185421b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"15e81889\",\"elType\":\"widget\",\"settings\":{\"editor\":\"There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"711d4107\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"color\":\"#FF785B\",\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1baac097\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"707e0cea\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"60a914e6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3517c6fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":56.67,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"70\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4b5bea2e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dd2bc6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"48e22a9a\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3fd12ea6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":43.244,\"content_position\":\"top\",\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"74a8eec4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"52\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash.png\"},\"image_size\":\"full\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"76626220\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1315d68b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"59d62df3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"5833b2d3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"2282407b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1ddfc1ba\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"68f8f31d\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2f7b51d0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"641098c0\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"71e90406\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"579a1b90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":97,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/febrian-zakaria-SiQgni-cqFg-unsplash-2.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"65454a61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1803e3d6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e858443\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"1cd4004d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"1168731b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":98,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/elevate-iv6yNy7oBqQ-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"479c928c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3b91d636\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e7ddb7\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"9a9f833\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"422a62c3\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":99,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"194788e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Miller\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2fe3d263\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"2ca9e52b\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"827ffab\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"2b938929\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"45742ae4\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"134d0e94\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5de7f0e7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":100,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_47_52-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a8f7cd4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28e65d25\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4ec49ce5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"62f998dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"187180f5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":101,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/brooke-cagle-8jp-6SjVibM-unsplash-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e237f1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6712e1b3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"220bb11c\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7e78609\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"295885e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":102,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/screenshot-2020.08.06-07_48_28-1.png\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5d882311\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c46c5ec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"text_color\":\"#3E3E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":25,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d8465f0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62333259\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":800,\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"4026eb24\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"44b93072\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#FFFFFF\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2a320eec\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable<br\\/> content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"266a5758\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"b5aa8fc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"53db4223\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"463c10b4\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3a450511\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"38fbb962\",\"elType\":\"section\",\"settings\":{\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"422494b8\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"5f777b6b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9f61097\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"72b1ad9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"300\",\"typography_line_height\":{\"unit\":\"px\",\"size\":28,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"12\",\"right\":\"40\",\"bottom\":\"12\",\"left\":\"40\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"38\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"text_shadow_text_shadow_type\":\"yes\",\"selected_icon\":{\"value\":\"\",\"library\":\"\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"68df5ab4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"7a1f013b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"3464d97\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":67.472,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"222c7f53\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4d18061b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"425e2b87\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"70dedad\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ef3f651\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3182bab9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"684b2169\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"icon\":{\"value\":\"fas fa-star\",\"library\":\"fa-solid\"},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1781188e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ca77acd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"34f62991\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":32.463,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"background_image\":{\"url\":\"\",\"id\":\"\"},\"background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_slideshow_gallery\":[],\"background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_hover_slideshow_gallery\":[],\"background_overlay_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_slideshow_gallery\":[],\"background_overlay_hover_image\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"background_overlay_hover_slideshow_gallery\":[]},\"elements\":[{\"id\":\"65716b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"title_color\":\"#000000\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7503198\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c8a5ec4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"32747346\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook-f\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\",\"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\":\"cc0914c\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"},\"_id\":\"1ea09c3\",\"link\":{\"url\":\"\",\"is_external\":\"true\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"item_icon_color\":\"default\",\"item_icon_primary_color\":\"\",\"item_icon_secondary_color\":\"\"},{\"social_icon\":{\"value\":\"fab fa-linkedin-in\",\"library\":\"fa-brands\"},\"_id\":\"04d5833\",\"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\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_background_image\":{\"url\":\"\",\"id\":\"\"},\"_background_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_slideshow_gallery\":[],\"_background_hover_image\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_tablet\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_image_mobile\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_video_fallback\":{\"url\":\"\",\"id\":\"\"},\"_background_hover_slideshow_gallery\":[]},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1167,103,'_elementor_controls_usage','a:9:{s:7:\"heading\";a:3:{s:5:\"count\";i:15;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:15;s:5:\"align\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{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:15;s:25:\"typography_letter_spacing\";i:15;s:11:\"title_color\";i:15;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:21;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:21;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:12;s:10:\"text_color\";i:11;s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:20:\"typography_font_size\";i:18;s:22:\"typography_font_weight\";i:18;s:22:\"typography_line_height\";i:18;s:25:\"typography_letter_spacing\";i:18;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:14;s:8:\"_padding\";i:6;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:27;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:27;s:21:\"space_between_widgets\";i:18;s:16:\"content_position\";i:1;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:19;s:6:\"margin\";i:7;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:7;s:26:\"box_shadow_box_shadow_type\";i:6;s:21:\"box_shadow_box_shadow\";i:6;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;}s:13:\"section_style\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:16;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:15:\"stretch_section\";i:5;s:13:\"content_width\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:3:{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:4;s:6:\"margin\";i:5;}}}}s:5:\"image\";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_image\";a:3:{s:5:\"image\";i:13;s:10:\"image_size\";i:13;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:11;s:19:\"image_border_radius\";i:11;}}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: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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:3:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:5:\"color\";i:3;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:2:{s:16:\"social_icon_list\";i:9;s:5:\"align\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:10:{s:10:\"icon_color\";i:9;s:18:\"icon_primary_color\";i:9;s:9:\"icon_size\";i:9;s:12:\"icon_padding\";i:9;s:12:\"icon_spacing\";i:9;s:19:\"image_border_border\";i:9;s:18:\"image_border_width\";i:9;s:18:\"image_border_color\";i:9;s:13:\"border_radius\";i:9;s:20:\"icon_secondary_color\";i:9;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:9;s:19:\"hover_primary_color\";i:9;s:18:\"hover_border_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:9;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:0:{}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:5;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;s:25:\"typography_letter_spacing\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;s:28:\"text_shadow_text_shadow_type\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}}'),(1168,103,'_wxr_import_user_slug','rishidemos'),(1169,103,'_demo_importer_plus_sites_imported_post','1'),(1170,103,'_demo_importer_enable_for_batch','1'),(1171,120,'_menu_item_type','post_type'),(1172,120,'_menu_item_object_id','106'),(1173,120,'_menu_item_object','page'),(1174,120,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1175,120,'_wp_old_date','2021-11-19'),(1176,120,'_wxr_import_user_slug','rishidemos'),(1178,120,'_demo_importer_plus_sites_imported_post','1'),(1179,120,'_demo_importer_enable_for_batch','1'),(1180,121,'_menu_item_type','post_type'),(1181,121,'_menu_item_object_id','115'),(1182,121,'_menu_item_object','page'),(1183,121,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1184,121,'_wp_old_date','2021-11-19'),(1185,121,'_wxr_import_user_slug','rishidemos'),(1187,121,'_demo_importer_plus_sites_imported_post','1'),(1188,121,'_demo_importer_enable_for_batch','1'),(1189,755,'_menu_item_type','post_type'),(1190,755,'_menu_item_object_id','753'),(1191,755,'_menu_item_object','page'),(1192,755,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1193,755,'_wp_old_date','2021-11-19'),(1194,755,'_wxr_import_user_slug','rishidemos'),(1196,755,'_demo_importer_plus_sites_imported_post','1'),(1197,755,'_demo_importer_enable_for_batch','1'),(1198,4221,'_wp_attached_file','2021/11/Logo-6.png'),(1199,4221,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:143;s:6:\"height\";i:126;s:4:\"file\";s:18:\"2021/11/Logo-6.png\";s:8:\"filesize\";i:865;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:{}}}'),(1200,4221,'_shortpixel_status','2.7200'),(1201,4221,'_wxr_import_user_slug','rishidemos'),(1202,4221,'_demo_importer_plus_sites_imported_post','1'),(1203,4221,'_demo_importer_enable_for_batch','1'),(1204,4221,'_demo_importer_plus_sites_image_hash','a8db0fbaf269c911e5bbc01ed5d5c42ca7a9a26e'),(1205,4221,'_elementor_source_image_hash','a8db0fbaf269c911e5bbc01ed5d5c42ca7a9a26e'),(1206,4250,'_wp_attached_file','2021/07/alex-munsell-auIbTAcSH-21.jpg'),(1207,4250,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:37:\"2021/07/alex-munsell-auIbTAcSH-21.jpg\";s:8:\"filesize\";i:89555;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:5:\"large\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51016;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50406;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23783;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16469;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33315;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35465;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64220;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52971;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10535;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142271;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:38:\"alex-munsell-auIbTAcSH-21-1170x640.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146360;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85323;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:37:\"alex-munsell-auIbTAcSH-21-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1208,4250,'_shortpixel_status','2.9000'),(1211,4250,'_demo_importer_plus_sites_imported_post','1'),(1212,4250,'_demo_importer_enable_for_batch','1'),(1213,4250,'_demo_importer_plus_sites_image_hash','1d651d4f6c7f7141262f5e5199cc81606552d736'),(1214,4250,'_elementor_source_image_hash','1d651d4f6c7f7141262f5e5199cc81606552d736'),(1215,4252,'_wp_attached_file','2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg'),(1216,4252,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:48:\"2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg\";s:8:\"filesize\";i:147570;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22672;}s:5:\"large\";a:5:{s:4:\"file\";s:49:\"brooke-lark-oaz0raysASk-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:152792;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10597;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:99104;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60076;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31832;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31253;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22498;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42548;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45347;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82536;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18785;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54367;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13063;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-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:32385;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:50:\"brooke-lark-oaz0raysASk-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:275883;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:49:\"brooke-lark-oaz0raysASk-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:160533;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:96504;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"brooke-lark-oaz0raysASk-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29520;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1217,4252,'_shortpixel_status','2.5900'),(1220,4252,'_demo_importer_plus_sites_imported_post','1'),(1221,4252,'_demo_importer_enable_for_batch','1'),(1222,4252,'_demo_importer_plus_sites_image_hash','e16d6f8495c6cae31e73988d0185a7abff458f07'),(1223,4252,'_elementor_source_image_hash','e16d6f8495c6cae31e73988d0185a7abff458f07'),(1224,4253,'_wp_attached_file','2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg'),(1225,4253,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:52:\"2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg\";s:8:\"filesize\";i:94905;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14195;}s:5:\"large\";a:5:{s:4:\"file\";s:53:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90331;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6513;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58483;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35120;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18463;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19042;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13747;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24539;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26128;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47250;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11789;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31754;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7970;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-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:18752;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:54:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:164476;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:53:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:94143;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57046;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:52:\"joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18137;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1226,4253,'_shortpixel_status','2.6200'),(1229,4253,'_demo_importer_plus_sites_imported_post','1'),(1230,4253,'_demo_importer_enable_for_batch','1'),(1231,4253,'_demo_importer_plus_sites_image_hash','3972b496927f44d3e046e9a72ab8e4f091e9634a'),(1232,4253,'_elementor_source_image_hash','3972b496927f44d3e046e9a72ab8e4f091e9634a'),(1233,4255,'_wp_attached_file','2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg'),(1234,4255,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1800;s:6:\"height\";i:1237;s:4:\"file\";s:41:\"2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg\";s:8:\"filesize\";i:111850;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17171;}s:5:\"large\";a:5:{s:4:\"file\";s:42:\"stil-u2Lp8tXIcjw-unsplash-2-1-1024x704.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:704;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:117064;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8060;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:74747;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43690;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20524;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23049;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14127;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28987;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31217;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:57885;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14232;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36639;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9729;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-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:22219;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:43:\"stil-u2Lp8tXIcjw-unsplash-2-1-1536x1056.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1056;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:214398;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:42:\"stil-u2Lp8tXIcjw-unsplash-2-1-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111925;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72470;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:41:\"stil-u2Lp8tXIcjw-unsplash-2-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21804;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1235,4255,'_shortpixel_status','2.6400'),(1238,4255,'_demo_importer_plus_sites_imported_post','1'),(1239,4255,'_demo_importer_enable_for_batch','1'),(1240,4255,'_demo_importer_plus_sites_image_hash','67300b03ae68e3530d0300e6304aa99110380147'),(1241,4255,'_elementor_source_image_hash','67300b03ae68e3530d0300e6304aa99110380147'),(1242,4314,'_wp_attached_file','2021/11/brooke-cagle-1.jpg'),(1243,4314,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:26:\"2021/11/brooke-cagle-1.jpg\";s:8:\"filesize\";i:27581;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14767;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6160;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15181;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17371;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10999;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21094;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10205;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21048;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7375;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-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:15775;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"brooke-cagle-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15005;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1244,4314,'_shortpixel_status','2.6800'),(1247,4314,'_demo_importer_plus_sites_imported_post','1'),(1248,4314,'_demo_importer_enable_for_batch','1'),(1249,4314,'_demo_importer_plus_sites_image_hash','64bd72f0c318972df2660421495d0a22e5ccf064'),(1250,4314,'_elementor_source_image_hash','64bd72f0c318972df2660421495d0a22e5ccf064'),(1251,4315,'_wp_attached_file','2021/11/elevate-iv-1.jpg'),(1252,4315,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:24:\"2021/11/elevate-iv-1.jpg\";s:8:\"filesize\";i:35795;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18831;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7467;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18506;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20663;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13031;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27199;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11981;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26613;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8909;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"elevate-iv-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:19850;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"elevate-iv-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17558;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1253,4315,'_shortpixel_status','2.6400'),(1256,4315,'_demo_importer_plus_sites_imported_post','1'),(1257,4315,'_demo_importer_enable_for_batch','1'),(1258,4315,'_demo_importer_plus_sites_image_hash','add9ff5dbd213efb0818593de92ae0fde6e0d89a'),(1259,4315,'_elementor_source_image_hash','add9ff5dbd213efb0818593de92ae0fde6e0d89a'),(1260,4316,'_wp_attached_file','2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg'),(1261,4316,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:50:\"2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg\";s:8:\"filesize\";i:27086;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15274;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6536;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14989;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16557;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11242;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20395;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10455;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20508;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7711;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15739;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:50:\"febrian-zakaria-SiQgni-cqFg-unsplash-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1262,4316,'_shortpixel_status','2.6700'),(1265,4316,'_demo_importer_plus_sites_imported_post','1'),(1266,4316,'_demo_importer_enable_for_batch','1'),(1267,4316,'_demo_importer_plus_sites_image_hash','2bbd03cd3808b9c8cbe1bc04765a1c2092d2d868'),(1268,4316,'_elementor_source_image_hash','2bbd03cd3808b9c8cbe1bc04765a1c2092d2d868'),(1269,4317,'_wp_attached_file','2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg'),(1270,4317,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:48:\"2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg\";s:8:\"filesize\";i:33437;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18932;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8018;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19236;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20329;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14068;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26047;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12616;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25546;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9422;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-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:19967;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:48:\"petr-sevcovic-e5Q5vWO55uU-unsplash-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18028;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1271,4317,'_shortpixel_status','2.6500'),(1274,4317,'_demo_importer_plus_sites_imported_post','1'),(1275,4317,'_demo_importer_enable_for_batch','1'),(1276,4317,'_demo_importer_plus_sites_image_hash','b52f762ec2231e45063d761b470499068fb2652f'),(1277,4317,'_elementor_source_image_hash','b52f762ec2231e45063d761b470499068fb2652f'),(1278,4318,'_wp_attached_file','2021/11/screenshot-3.jpg'),(1279,4318,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:24:\"2021/11/screenshot-3.jpg\";s:8:\"filesize\";i:37369;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:24:\"screenshot-3-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20451;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:24:\"screenshot-3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8264;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20626;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:24:\"screenshot-3-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:22902;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14962;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:24:\"screenshot-3-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29043;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:24:\"screenshot-3-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13374;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:24:\"screenshot-3-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28902;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:24:\"screenshot-3-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9956;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:24:\"screenshot-3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21780;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:24:\"screenshot-3-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19767;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1280,4318,'_shortpixel_status','2.6400'),(1283,4318,'_demo_importer_plus_sites_imported_post','1'),(1284,4318,'_demo_importer_enable_for_batch','1'),(1285,4318,'_demo_importer_plus_sites_image_hash','1695e3fdb31707b88d0fed44c02bef4eaa575c35'),(1286,4318,'_elementor_source_image_hash','1695e3fdb31707b88d0fed44c02bef4eaa575c35'),(1287,4319,'_wp_attached_file','2021/11/screenshot-4-1.jpg'),(1288,4319,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:370;s:6:\"height\";i:330;s:4:\"file\";s:26:\"2021/11/screenshot-4-1.jpg\";s:8:\"filesize\";i:27444;s:5:\"sizes\";a:11:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-300x268.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:268;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15913;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:6771;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14770;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17408;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10344;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-355x330.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:330;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21321;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11025;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-370x320.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21374;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8081;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:26:\"screenshot-4-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:16448;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:26:\"screenshot-4-1-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15547;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1289,4319,'_shortpixel_status','2.6500'),(1292,4319,'_demo_importer_plus_sites_imported_post','1'),(1293,4319,'_demo_importer_enable_for_batch','1'),(1294,4319,'_demo_importer_plus_sites_image_hash','fe8b668cd279e3952fa7536d7902c3a28cd13af9'),(1295,4319,'_elementor_source_image_hash','fe8b668cd279e3952fa7536d7902c3a28cd13af9'),(1296,4532,'_wp_attached_file','2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg'),(1297,4532,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:640;s:4:\"file\";s:45:\"2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg\";s:8:\"filesize\";i:89555;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x100.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11375;}s:5:\"large\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1024x341.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:341;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:79859;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8490;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-768x256.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:256;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51016;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50406;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23783;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28783;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16469;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33315;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35465;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:64220;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17273;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52971;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10535;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25744;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1536x512.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:142271;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:46:\"alex-munsell-auIbTAcSH6E-unsplash-1170x640.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:640;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:146360;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:85323;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:45:\"alex-munsell-auIbTAcSH6E-unsplash-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27460;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1298,4532,'_shortpixel_status','2.9000'),(1301,4532,'_demo_importer_plus_sites_imported_post','1'),(1302,4532,'_demo_importer_enable_for_batch','1'),(1303,4532,'_demo_importer_plus_sites_image_hash','e03c17a4625d3de5b01d56746180ea820fb0324a'),(1304,4532,'_elementor_source_image_hash','e03c17a4625d3de5b01d56746180ea820fb0324a'),(1305,4695,'_wp_attached_file','2021/11/Path-24974.svg'),(1306,4695,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:340;s:5:\"width\";i:36;s:6:\"height\";i:67;}'),(1309,4695,'_demo_importer_plus_sites_imported_post','1'),(1310,4695,'_demo_importer_enable_for_batch','1'),(1311,4695,'_demo_importer_plus_sites_image_hash','0e7a2c072775c86e75309ea08970e785cee62c62'),(1312,4695,'_elementor_source_image_hash','0e7a2c072775c86e75309ea08970e785cee62c62'),(1313,4697,'_wp_attached_file','2021/11/Path-24974-1.svg'),(1314,4697,'_wp_attachment_metadata','a:3:{s:8:\"filesize\";i:350;s:5:\"width\";i:36;s:6:\"height\";i:67;}'),(1317,4697,'_demo_importer_plus_sites_imported_post','1'),(1318,4697,'_demo_importer_enable_for_batch','1'),(1319,4697,'_demo_importer_plus_sites_image_hash','72edf298a6c437e26ad362d8a0503358917c5f89'),(1320,4697,'_elementor_source_image_hash','72edf298a6c437e26ad362d8a0503358917c5f89'),(1321,106,'_wp_page_template','elementor_header_footer'),(1322,106,'_rishi_sidebar_layout','no-sidebar'),(1323,106,'_elementor_edit_mode','builder'),(1324,106,'_elementor_template_type','wp-page'),(1325,106,'_elementor_version','3.16.5'),(1326,106,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe-765x650.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"rishi-fullwidth\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1327,106,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"43506fe53ad7cc42290af86e92f64160\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"a0650f5c45d0128c26e37390cbaf353b\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"c913213e210320e2fb6aa55d24a9fb2f\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1328,106,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1329,106,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1330,106,'_wxr_import_user_slug','rishidemos'),(1331,106,'_demo_importer_plus_sites_imported_post','1'),(1332,106,'_demo_importer_enable_for_batch','1'),(1333,115,'_wp_page_template','elementor_header_footer'),(1334,115,'_rishi_sidebar_layout','no-sidebar'),(1335,115,'_elementor_edit_mode','builder'),(1336,115,'_elementor_template_type','wp-page'),(1337,115,'_elementor_version','3.4.8');
INSERT INTO `staging_ajj_postmeta` VALUES (1338,115,'_elementor_data','[{\"id\":\"748b280d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"201\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"},\"_title\":\"Section\"},\"elements\":[{\"id\":\"333f294a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ba78c7c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"b6ca70a\",\"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\":\"4dd3db3\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"efc1e29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Since Established in 2012, we have served more than thousands of customers around the world\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36bb0e6\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4663c10\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"edeb613\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"44e8bbd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"bcf5dc2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"67eb493\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"031231b\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"985d6bf\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"c53120b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3339,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"d1e0a71\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"657b52e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3340,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-2.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"ded36d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6865f49\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"f370b68\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3462,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-cagle-8jp-6SjVibM-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"797793c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"eec6eec\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3464,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"61713e6\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"4a04ab2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3463,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/elevate-iv6yNy7oBqQ-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"7585b38\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"45\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5d959c9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":true},\"padding_mobile\":{\"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}},\"elements\":[{\"id\":\"4a9b60c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"A restaurant, or an eatery, is a business that prepares and serves food and drinks to customers. Meals are generally served and eaten on the premises, but many restaurants also offer take-out and food delivery services. Restaurants vary greatly in appearance and offerings, including a wide variety of cuisines and service models ranging from inexpensive fast food restaurants and cafeterias\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"column_gap_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-19\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"-20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"906a070\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"px\",\"size\":100,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":60,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi4\"},\"gap_tablet\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"8a8644a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Follow Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"003d063\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"icon_padding_mobile\":{\"unit\":\"em\",\"size\":0.6,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"09\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a787822\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"27dc8b0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.914,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"fac74af\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2903ffe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5f2e8d1\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ee2ee53\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"751e758\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"1218351\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"980edff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"d1a640b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"743fda7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"ea6a7a9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"f1754ed\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ea9f964\",\"elType\":\"section\",\"settings\":{\"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_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"209d30a\",\"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\":\"3ae1948\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"100\",\"right\":0,\"bottom\":\"75\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"918afad\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"8612425\",\"elType\":\"widget\",\"settings\":{\"title\":\"Meet Our Team\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"40f832a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"86789c5\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"040\",\"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\":\"030\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"ba815a5\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"a213613\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4316,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6527eef\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f7f4606\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Founder\\/Head Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"414b2da\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"23b2372\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"23f6588\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4315,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/elevate-iv-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7cc316f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1dae768\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"d094436\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"7ef9b0f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"0c89f90\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4317,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"f781e50\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Miller\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ce1f666\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Assistant Chef\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"3cce460\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"b2ac41c\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e0ca1b4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"743b224\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4318,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-3.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7e4bbdd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f5335df\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"27f5ad5\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"9df3d09\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"71b6239\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4314,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-cagle-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"a9ccc68\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"39aa13c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"1e4f5b1\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true},{\"id\":\"ba839c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":5,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.085)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"padding\":{\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"b8fcc6b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4319,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"99a0a33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"28\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.363,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e726e58\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Staff\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"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\":\"d834bd4\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#0000001A\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"24\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"022\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"icon_secondary_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3f0a926\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"384cbd0\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"37ed3e6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"25ab2a5\",\"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\":\"f9bbc3d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9592e29\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"aa922d8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"c515e7f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"75bb6e3\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"a3ec7a2\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"88b1f2a\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"19aeedd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ce3202b\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a895870\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Section\"},\"elements\":[{\"id\":\"ce4deb0\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ed66af1\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"ac054f1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"f5f3a76\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f67fe15\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4b214a9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\",\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"8bb3286\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c107520\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"be1339e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"03fed6f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"db5876c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73c4935\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fa309c\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6ebb2ca\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9610ff6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"eb763c2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d933d34\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c5bbafe\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"452644b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false}},\"elements\":[{\"id\":\"d72c4ca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b293924\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8fa1add\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"db1dcdc\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"79e4152\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"0b75bc8\",\"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\":\"81bafde\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"9166b03\",\"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\":\"3b30ac5\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8b3a104\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9f48da5\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1339,115,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"44b7710c56bf0dfc38f79940d8d6974b\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"9d7cd2e032979e3593df99ecb08d9d2c\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"e576f08792b602f8782909c32d7c60fe\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1340,115,'_elementor_page_assets','a:1:{s:6:\"styles\";a:15:{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\";}}'),(1341,115,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:17;s:5:\"align\";i:14;s:11:\"header_size\";i:12;s:12:\"align_mobile\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:21:\"typography_typography\";i:16;s:22:\"typography_line_height\";i:12;s:27:\"typography_font_size_mobile\";i:13;s:29:\"typography_line_height_mobile\";i:14;s:32:\"typography_letter_spacing_mobile\";i:12;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:13;s:8:\"_padding\";i:3;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:23;s:17:\"column_gap_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:5:\"align\";i:16;s:21:\"typography_typography\";i:23;s:20:\"typography_font_size\";i:12;s:27:\"typography_font_size_mobile\";i:15;s:22:\"typography_line_height\";i:22;s:29:\"typography_line_height_mobile\";i:6;s:32:\"typography_letter_spacing_mobile\";i:10;s:12:\"align_mobile\";i:3;s:22:\"typography_font_weight\";i:6;s:10:\"text_color\";i:2;s:27:\"typography_font_size_tablet\";i:8;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:15;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:5;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:7;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:33;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:33;s:21:\"space_between_widgets\";i:18;s:5:\"align\";i:3;s:16:\"content_position\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:21;s:7:\"padding\";i:29;s:14:\"padding_mobile\";i:20;s:13:\"margin_mobile\";i:15;s:14:\"padding_tablet\";i:9;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:13;s:18:\"animation_duration\";i:2;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:21:\"box_shadow_box_shadow\";i:7;s:13:\"border_radius\";i:7;s:26:\"box_shadow_box_shadow_type\";i:6;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;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:7:\"section\";a:3:{s:5:\"count\";i:22;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:8:{s:13:\"content_width\";i:9;s:15:\"stretch_section\";i:5;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:8;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:13;s:7:\"padding\";i:14;s:14:\"padding_mobile\";i:9;s:13:\"margin_tablet\";i:3;s:13:\"margin_mobile\";i:10;s:14:\"padding_tablet\";i:4;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:5;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:2;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}s:14:\"section_border\";a:6:{s:13:\"border_radius\";i:1;s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:1;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:14;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:14;s:10:\"image_size\";i:14;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"width\";i:11;s:19:\"image_border_radius\";i:11;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:9;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:9;s:18:\"icon_primary_color\";i:9;s:9:\"icon_size\";i:9;s:12:\"icon_padding\";i:9;s:12:\"icon_spacing\";i:9;s:19:\"image_border_border\";i:9;s:18:\"image_border_width\";i:9;s:18:\"image_border_color\";i:9;s:13:\"border_radius\";i:9;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:9;s:19:\"hover_primary_color\";i:9;s:18:\"hover_border_color\";i:9;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:9;s:14:\"_margin_mobile\";i:8;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";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:2:{s:4:\"text\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}}'),(1342,115,'_wxr_import_user_slug','rishidemos'),(1343,115,'_demo_importer_plus_sites_imported_post','1'),(1344,115,'_demo_importer_enable_for_batch','1'),(1345,749,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"31542678e7c0d3158c53b44e9a8ce7bd\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"77e91a1c25402898442211bd4a09786a\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"c34d092383ffe11b771da82b7bbe92ec\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1346,749,'_elementor_edit_mode','builder'),(1347,749,'_elementor_template_type','wp-page'),(1348,749,'_elementor_version','3.4.8'),(1349,749,'_wp_page_template','elementor_header_footer'),(1350,749,'_elementor_data','[{\"id\":\"d810082\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"16162f6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0200\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0aeb4a3\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"8687fd4\",\"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\":\"76ab1bc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b11d8d7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Here are some of our delicious and most loved items by our customers all over the world.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"020f69f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"cd1a16a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"9bb1812\",\"elType\":\"widget\",\"settings\":{\"title\":\"Starter\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2862367\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6d059fb\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"dfc2416\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a208e22\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"ee2a872\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5d727f\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"139ce8b\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"74479d3\",\"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\":\"c519953\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/nikldn-HzVHlwvQlyw-unsplash.jpg\",\"id\":829,\"alt\":\"\",\"source\":\"library\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.7,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"5e75bc1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"32e34e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"393cc8a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b696637\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"e94e46c\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"5796501\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b5a9da1\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a5d9848\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1643e80\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3ce13a7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg\",\"id\":3789,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000066\",\"background_overlay_opacity\":{\"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}},\"elements\":[{\"id\":\"50e3c42\",\"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\":\"963d20c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0130\",\"right\":\"0\",\"bottom\":\"0130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e294a9d\",\"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\":\"e79ffb4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Natural ingredients and testy food\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"d56e354\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"15ce12a\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4ff0ca\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"a237a46\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"c6ff956\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"974ab1e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"5977701\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"1e49f9a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"672e7c4\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"d8792d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e4b2ceb\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f7fe9ac\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg-5.jpg\",\"id\":3878,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000066\",\"background_overlay_opacity\":{\"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},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"56c6aa1\",\"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\":\"c33840c\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0130\",\"right\":\"0\",\"bottom\":\"0130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6ddd91f\",\"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\":\"9aa2b26\",\"elType\":\"widget\",\"settings\":{\"title\":\"Enjoy in good tast and live life\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"27\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"07894be\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"55\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"ec44bee\",\"elType\":\"widget\",\"settings\":{\"text\":\"Book a Table\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1eeef6f\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"0100\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"9fdbfe1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"0a07731\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"_border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe5a72d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"-15\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"color\":\"globals\\/colors?id=rishi3\"}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"01c7cfe\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"35\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"addf06a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"55ab15f\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"6a001d2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"12f4aa5\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsts_title_typography_font_weight\":\"700\",\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"960da2b\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":\"015\",\"bottom\":\"70\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"11108dd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"4671bb8\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"035\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"da86511\",\"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\":\"af22006\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28b022b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"36ab0f6\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"299e126\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"a003697\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"b0f9647\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bf8152e\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"7944728\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"78a0917\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1dc9545\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"0d71d6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0045a82\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"d9c469a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"b02c0cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2101489\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"700e5f6\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"ba41da5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"af9a0b4\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"17b5620\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"523009d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"291b8cd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"071d54f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"54ebc4f\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"49151e3\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4e6490a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0a53321\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"67dbb44\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8f91adc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"827410d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"aac3294\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c5a79dd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"8f5b57c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"19f5b0a\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d4c8be7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d33011e\",\"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\":\"7e42fef\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"05bdfb5\",\"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\":\"45d6807\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"809bf38\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"770e616\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"035\",\"bottom\":\"17\",\"left\":\"035\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1351,749,'_elementor_page_assets','a:1:{s:6:\"styles\";a:5:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";i:2;s:12:\"e-animations\";i:3;s:12:\"e-animations\";i:4;s:12:\"e-animations\";}}'),(1352,749,'_elementor_controls_usage','a:12:{s:7:\"heading\";a:3:{s:5:\"count\";i:12;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:12;s:5:\"align\";i:10;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:21:\"typography_typography\";i:5;s:22:\"typography_line_height\";i:2;s:27:\"typography_font_size_mobile\";i:4;s:29:\"typography_line_height_mobile\";i:3;s:32:\"typography_letter_spacing_mobile\";i:3;}}s:8:\"advanced\";a:2:{s:15:\"_section_border\";a:1:{s:13:\"_border_width\";i:4;}s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:6;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:14;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:14;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:5:\"align\";i:7;s:21:\"typography_typography\";i:14;s:20:\"typography_font_size\";i:13;s:27:\"typography_font_size_mobile\";i:11;s:22:\"typography_line_height\";i:11;s:29:\"typography_line_height_mobile\";i:2;s:10:\"text_color\";i:2;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:7;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:6;s:14:\"_margin_mobile\";i:3;s:15:\"_padding_mobile\";i:2;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:30;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:30;s:21:\"space_between_widgets\";i:11;s:5:\"align\";i:1;s:19:\"_inline_size_tablet\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:20;s:7:\"padding\";i:25;s:14:\"padding_mobile\";i:9;s:13:\"margin_tablet\";i:12;s:13:\"margin_mobile\";i:8;s:14:\"padding_tablet\";i:7;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";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:4:{s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:24;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:8;s:15:\"stretch_section\";i:7;s:6:\"layout\";i:4;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:17;s:7:\"padding\";i:19;s:14:\"padding_mobile\";i:10;s:13:\"margin_tablet\";i:8;s:13:\"margin_mobile\";i:8;s:14:\"padding_tablet\";i:10;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:4;s:19:\"background_position\";i:4;s:15:\"background_size\";i:4;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:4;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:3;s:26:\"background_overlay_opacity\";i:3;}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:\"divider\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:3:{s:5:\"width\";i:4;s:5:\"align\";i:4;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:6:\"weight\";i:6;s:5:\"color\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";i:2;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:4;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:8;s:34:\"bpmcgs_price_title_price_connector\";i:8;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:8;s:28:\"bpmsmis_items_spacing_mobile\";i:8;}s:34:\"meafe_price_menu_style_title_style\";a:4:{s:19:\"bpmsts_title_margin\";i:8;s:34:\"bpmsts_title_typography_typography\";i:8;s:33:\"bpmsts_title_typography_font_size\";i:8;s:35:\"bpmsts_title_typography_font_weight\";i:8;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:8;s:33:\"bpmsps_price_typography_font_size\";i:8;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:8;s:39:\"bpmsds_description_typography_font_size\";i:8;s:26:\"bpmsds_description_spacing\";i:8;s:24:\"bpmsds_description_color\";i:8;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:8;s:34:\"bpmsis_image_size_custom_dimension\";i:8;s:18:\"bpmsis_image_width\";i:8;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:8;s:28:\"bpmstpcs_items_divider_color\";i:8;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";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:2:{s:4:\"text\";i:4;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:3;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:4;s:15:\"hover_animation\";i:4;s:27:\"typography_font_size_mobile\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}}'),(1353,749,'_wxr_import_user_slug','rishidemos'),(1354,749,'_demo_importer_plus_sites_imported_post','1'),(1355,749,'_demo_importer_enable_for_batch','1'),(1356,751,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"315e3cfbd28887459a6ada72ec32f2b3\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"6798652d97129f96d059eb8a1e1ca5fc\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"4d1b5968d7bfa80eb48f38613485cb16\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1357,751,'_elementor_edit_mode','builder'),(1358,751,'_elementor_template_type','wp-page'),(1359,751,'_elementor_version','3.4.8'),(1360,751,'_wp_page_template','elementor_header_footer'),(1361,751,'_elementor_data','[{\"id\":\"308686d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"201\",\"right\":\"0\",\"bottom\":\"120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"a329f47\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"037b039\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"605b80c\",\"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\":\"b00e3da\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"829dc0a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Words of praise from our customers who have loved our menus.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0ad88cd\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"154\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0105\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"140\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"b7b264e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"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},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"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}},\"elements\":[{\"id\":\"27e3973\",\"elType\":\"section\",\"settings\":{\"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},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6995bdf\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"57d4243\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3709,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"_offset_x_tablet\":{\"size\":1,\"unit\":\"px\"},\"_offset_y_tablet\":{\"size\":-88,\"unit\":\"px\"},\"align\":\"center\",\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-52,\"sizes\":[]},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"555f10d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9803853\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"10b57fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"David Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"05cbd91\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"e7143be\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"94ad4ee\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"8d9153f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"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\":\"030\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_tablet\":100,\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"6fa0d2e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3707,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alexandra-lammerink-1-1.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"size\":-55,\"unit\":\"px\"},\"_offset_y\":{\"size\":-134,\"unit\":\"px\"},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-47,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ac68b29\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0060398\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"12bc277\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jennie Lee\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9372b50\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7ea66a8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"a89dd92\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"a78df8e\",\"elType\":\"section\",\"settings\":{\"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\":\"6fcf4cc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6d3c754\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3710,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/michael-dam-mEZ3PoFGs_k-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ebde43d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\",\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0b95171\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e743640\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lina Stoner\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de8d1a6\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"65af30b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"85c5020\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"514f551\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"4bd7333\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3704,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/spencer-russell-C7FB7H-sXJs-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-53,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2c30fc6\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"234c908\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6cbe96c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Watson\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b3e3c9f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f4b4400\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"3f3b331\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"1e5ddda\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"68be569\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"bca6cd9\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3708,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"ba48f4d\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"689fd8d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"45ec452\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lisa Stoner\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"de9537e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"655cf5f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"75\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"d5504ed\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"5db775d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"cfc48e8\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3705,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/552963-PK36W8-345.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"24fe136\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6bea670\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6e474e4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Linda Wiver\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"82dc730\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6c5a582\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"100\",\"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\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0100\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"7ef961d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"469f94a\",\"elType\":\"section\",\"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\":\"dc3093c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"ec2bc6e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3706,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/2899356.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-55,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8a6e877\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"20ac028\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"fc9d0ea\",\"elType\":\"widget\",\"settings\":{\"title\":\"Alex Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fe8f2c4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"f87ce1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_inline_size_tablet\":100,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"9dac633\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"0f8ed0d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"65\",\"bottom\":\"50\",\"left\":\"65\",\"isLinked\":false},\"_inline_size_tablet\":100,\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"020\",\"bottom\":\"040\",\"left\":\"020\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"05\",\"bottom\":\"030\",\"left\":\"05\",\"isLinked\":false}},\"elements\":[{\"id\":\"7808d1d\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3711,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg\",\"alt\":\"\",\"source\":\"library\"},\"_position\":\"absolute\",\"_offset_x\":{\"unit\":\"px\",\"size\":-60,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-134,\"sizes\":[]},\"align\":\"center\",\"_offset_x_tablet\":{\"unit\":\"px\",\"size\":1,\"sizes\":[]},\"_offset_y_tablet\":{\"unit\":\"px\",\"size\":-88,\"sizes\":[]},\"_offset_y_mobile\":{\"unit\":\"px\",\"size\":-54,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"44531c6\",\"elType\":\"widget\",\"settings\":{\"title\":\"They Provide Good Service.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"065\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1289de5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page.\\u201d\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.667,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d580ad0\",\"elType\":\"widget\",\"settings\":{\"title\":\"Samantha Richard\",\"header_size\":\"div\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Roboto\",\"typography_font_weight\":\"700\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"32\",\"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.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"fee2367\",\"elType\":\"widget\",\"settings\":{\"title\":\"Managing Director of XYZ Compay\",\"header_size\":\"div\",\"align\":\"center\",\"title_color\":\"#878787\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"6\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.35,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.35,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"04\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1570221\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"015\",\"bottom\":\"60\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"cdd7427\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"6723877\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"035\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"b8e6ce2\",\"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\":\"19064f8\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ab66781\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"16ea014\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"d02686d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"8be50a9\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#02010100\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f9d4af4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ac53535\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"82f7709\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"de7011e\",\"elType\":\"widget\",\"settings\":{\"address\":\"London Eye, London, United Kingdom\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e0906ed\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"fe95089\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.731,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a1e3d17\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"7d86824\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"background_color\":\"#202020\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"9173a49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1d6669e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"text_color\":\"#A1A1A1\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4d703b8\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\",\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\"},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"2f596af\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"a29b758\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"724f1ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"}},\"elements\":[{\"id\":\"e341f06\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e1a324e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9180b32\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"69f7e03\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"65d3f73\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6ad3f8c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d7de5db\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6377ffb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"95fe064\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"19c35fd\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36.719,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"040\",\"isLinked\":false}},\"elements\":[{\"id\":\"8a47b60\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"da98ae9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b03173c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f3fb413\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"931e6df\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"6feb78c\",\"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\":\"370d1b9\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"9b48df8\",\"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\":\"010\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"ff94eca\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3c856eb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4132fb0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"700\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"text_padding\":{\"unit\":\"px\",\"top\":\"17\",\"right\":\"035\",\"bottom\":\"17\",\"left\":\"035\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1362,751,'_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\";}}'),(1363,751,'_elementor_controls_usage','a:10:{s:7:\"heading\";a:3:{s:5:\"count\";i:30;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:30;s:5:\"align\";i:28;s:11:\"header_size\";i:28;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:10:{s:21:\"typography_typography\";i:29;s:22:\"typography_line_height\";i:18;s:27:\"typography_font_size_mobile\";i:28;s:29:\"typography_line_height_mobile\";i:19;s:32:\"typography_letter_spacing_mobile\";i:19;s:22:\"typography_font_family\";i:8;s:22:\"typography_font_weight\";i:8;s:25:\"typography_letter_spacing\";i:16;s:20:\"typography_font_size\";i:16;s:11:\"title_color\";i:8;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:28;s:14:\"_margin_mobile\";i:24;s:15:\"_padding_mobile\";i:18;s:15:\"_padding_tablet\";i:8;s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:20;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:20;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:5:\"align\";i:13;s:21:\"typography_typography\";i:20;s:20:\"typography_font_size\";i:11;s:27:\"typography_font_size_mobile\";i:19;s:22:\"typography_line_height\";i:19;s:29:\"typography_line_height_mobile\";i:10;s:10:\"text_color\";i:2;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:25:\"typography_letter_spacing\";i:7;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:12;s:14:\"_margin_mobile\";i:11;s:15:\"_padding_mobile\";i:10;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:29;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:29;s:21:\"space_between_widgets\";i:7;s:19:\"_inline_size_tablet\";i:16;s:5:\"align\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:14;s:7:\"padding\";i:19;s:14:\"padding_mobile\";i:21;s:13:\"margin_mobile\";i:16;s:14:\"padding_tablet\";i:19;s:13:\"margin_tablet\";i:9;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:1;s:18:\"animation_duration\";i:1;}}s:5:\"style\";a:2:{s:14:\"section_border\";a:6:{s:21:\"box_shadow_box_shadow\";i:16;s:26:\"box_shadow_box_shadow_type\";i:8;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;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:7:\"section\";a:3:{s:5:\"count\";i:23;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:13:\"content_width\";i:5;s:15:\"stretch_section\";i:3;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:6;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:5;s:7:\"padding\";i:10;s:14:\"padding_mobile\";i:9;s:13:\"margin_mobile\";i:9;s:13:\"margin_tablet\";i:6;s:14:\"padding_tablet\";i:7;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:4;s:16:\"background_image\";i:2;s:19:\"background_position\";i:2;s:15:\"background_size\";i:2;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:2;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";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:9;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:9;s:5:\"align\";i:8;s:10:\"image_size\";i:2;}}s:8:\"advanced\";a:2:{s:17:\"_section_position\";a:9:{s:9:\"_position\";i:9;s:9:\"_offset_x\";i:8;s:9:\"_offset_y\";i:9;s:16:\"_offset_x_tablet\";i:8;s:16:\"_offset_y_tablet\";i:8;s:16:\"_offset_y_mobile\";i:8;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:14:\"_element_width\";i:1;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:5:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:6:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:11:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;s:22:\"typography_font_weight\";i:1;s:13:\"border_border\";i:1;s:12:\"border_width\";i:1;s:13:\"border_radius\";i:1;s:12:\"text_padding\";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:\"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:1:{s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";i:2;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}}'),(1364,751,'_wxr_import_user_slug','rishidemos'),(1365,751,'_demo_importer_plus_sites_imported_post','1'),(1366,751,'_demo_importer_enable_for_batch','1'),(1367,753,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"bc39143c74a11f34d8d90d1d69bd1181\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"acb8d68cb0baa58f83ee90a5fa073494\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"e7f538a50e1d3f694a28da1d03cea4a0\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1368,753,'_elementor_edit_mode','builder'),(1369,753,'_elementor_template_type','wp-page'),(1370,753,'_elementor_version','3.4.8'),(1371,753,'_wp_page_template','elementor_header_footer'),(1372,753,'_elementor_data','[{\"id\":\"25e9a1d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4532,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/03\\/alex-munsell-auIbTAcSH6E-unsplash.jpg\",\"id\":134},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"083\",\"right\":\"0\",\"bottom\":\"082\",\"left\":\"0\",\"isLinked\":false},\"background_repeat\":\"no-repeat\",\"background_overlay_background\":\"classic\",\"__globals__\":{\"background_overlay_color\":\"globals\\/colors?id=rishi2\"}},\"elements\":[{\"id\":\"77f9113\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0200\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6d30d2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"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}},\"elements\":[{\"id\":\"2e1d353\",\"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\":\"4368115\",\"elType\":\"widget\",\"settings\":{\"title\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.02,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.15,\"sizes\":[]},\"header_size\":\"h1\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"2024cc9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Feel free to send us a message if you have any questions.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2.125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d9181e1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"48d4750\",\"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\":\"508c957\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"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\":\"09945c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"align\":\"space-between\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"80\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3fd1ceb\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"header_size\":\"h4\",\"align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"00175b1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"3090209\",\"elType\":\"widget\",\"settings\":{\"editor\":\"9:00AM - 6:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0f5a311\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"99020c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39142c1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"11:00AM - 5:00PM\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"be680e2\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"cea5284\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e404557\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Closed\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"a664dbf\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":44,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"040\",\"bottom\":\"40\",\"left\":\"40\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"020\",\"bottom\":\"020\",\"left\":\"020\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"020\",\"bottom\":\"30\",\"left\":\"020\",\"isLinked\":false}},\"elements\":[{\"id\":\"1d91c13\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get Direction\",\"header_size\":\"h3\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8f28566\",\"elType\":\"widget\",\"settings\":{\"editor\":\"85 Bay Meadowns Drive Woodstock, GA 300188 United States\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"045\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"d0ad15a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View On Map\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"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},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"1be6fd1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"content_position\":\"center\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"e32dc47\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"84b4f70\",\"elType\":\"widget\",\"settings\":{\"editor\":\"+123 456 7890\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"0be2c6c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"info@example.com\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1c931e0\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.7,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4dd6b02\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"2e7302a\",\"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\":\"9be5eb3\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"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\":\"43da678\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":40,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"010\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7dccbf6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/taylor-kiser-POFG828-GQc-unsplash-1.jpg\",\"id\":4106,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"3a4cddc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":60,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"050\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"60\",\"bottom\":\"60\",\"left\":\"60\",\"isLinked\":true},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"030\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"040\",\"bottom\":\"040\",\"left\":\"040\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"020\",\"bottom\":\"020\",\"left\":\"020\",\"isLinked\":true}},\"elements\":[{\"id\":\"5986bd7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Let\'s Have a Talk\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ca9f411\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking.\",\"align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"77421d5\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"4081\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_typography_typography\":\"custom\",\"bcsffs_cf7_field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bcsffs_cf7_field_placeholder_color\":\"#3E3E3E\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"bcsffs_cf7_field_border_color\":\"#0000001A\"},\"elements\":[],\"widgetType\":\"meafe-cf7\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"54be2f4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#202020\",\"margin\":{\"unit\":\"px\",\"top\":\"0100\",\"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\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"uc_background_type\":\"__none__\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"19e475d\",\"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\":\"c761f91\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#FFFFFF0D\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"0\",\"bottom\":\"70\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"015\",\"bottom\":\"070\",\"left\":\"015\",\"isLinked\":false},\"uc_background_type\":\"__none__\"},\"elements\":[{\"id\":\"fef82a4\",\"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\":\"d9a12fc\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get News & Offers\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"015\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"53c31ce\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout.\",\"align\":\"center\",\"text_color\":\"#a1a1a1\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"__globals__\":{\"text_color\":\"\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"99087c2\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"070\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"hover_color\":\"globals\\/colors?id=rishi2\",\"button_background_hover_color\":\"globals\\/colors?id=rishi5\",\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1373,753,'_elementor_page_assets','a:1:{s:6:\"styles\";a:2:{i:0;s:12:\"e-animations\";i:1;s:12:\"e-animations\";}}'),(1374,753,'_elementor_controls_usage','a:9:{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:4:{s:5:\"title\";i:6;s:5:\"align\";i:6;s:11:\"header_size\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:21:\"typography_typography\";i:3;s:22:\"typography_line_height\";i:1;s:27:\"typography_font_size_mobile\";i:2;s:29:\"typography_line_height_mobile\";i:2;s:32:\"typography_letter_spacing_mobile\";i:2;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:14:\"_margin_tablet\";i:2;s:7:\"_margin\";i:5;s:8:\"_padding\";i:1;s:15:\"_padding_mobile\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:12;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:12;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:5:\"align\";i:6;s:21:\"typography_typography\";i:10;s:20:\"typography_font_size\";i:3;s:27:\"typography_font_size_mobile\";i:9;s:22:\"typography_line_height\";i:9;s:29:\"typography_line_height_mobile\";i:1;s:32:\"typography_letter_spacing_mobile\";i:6;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:5:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:15:\"_padding_mobile\";i:1;s:8:\"_padding\";i:1;s:14:\"_margin_tablet\";i:2;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}}}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:4:{s:12:\"_inline_size\";i:11;s:21:\"space_between_widgets\";i:1;s:16:\"content_position\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:11;s:7:\"padding\";i:11;s:14:\"padding_mobile\";i:3;s:13:\"margin_tablet\";i:2;s:13:\"margin_mobile\";i:4;s:14:\"padding_tablet\";i:5;}}s:5:\"style\";a:1:{s:14:\"section_border\";a:2:{s:26:\"box_shadow_box_shadow_type\";i:2;s:21:\"box_shadow_box_shadow\";i:2;}}}}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:3:{s:13:\"content_width\";i:2;s:15:\"stretch_section\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:8:\"advanced\";a:1:{s:16:\"section_advanced\";a:6:{s:6:\"margin\";i:7;s:7:\"padding\";i:8;s:14:\"padding_mobile\";i:2;s:13:\"margin_tablet\";i:1;s:13:\"margin_mobile\";i:2;s:14:\"padding_tablet\";i:3;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:23:\"background_image_mobile\";i:1;s:17:\"background_repeat\";i:1;s:16:\"background_color\";i:1;}s:26:\"section_background_overlay\";a:1:{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: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:1:{s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:4:{s:5:\"color\";i:2;s:6:\"weight\";i:2;s:3:\"gap\";i:2;s:10:\"gap_mobile\";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:2:{s:4:\"text\";i:2;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:10:{s:21:\"typography_typography\";i:2;s:20:\"typography_font_size\";i:1;s:13:\"border_border\";i:2;s:12:\"border_width\";i:2;s:27:\"typography_font_size_tablet\";i:1;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;s:29:\"button_background_hover_color\";i:1;s:15:\"hover_animation\";i:2;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:2;}}}}s:12:\"social-icons\";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_social_icon\";a:2:{s:16:\"social_icon_list\";i:1;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:11:{s:10:\"icon_color\";i:1;s:18:\"icon_primary_color\";i:1;s:9:\"icon_size\";i:1;s:12:\"icon_padding\";i:1;s:12:\"icon_spacing\";i:1;s:19:\"image_border_border\";i:1;s:18:\"image_border_width\";i:1;s:18:\"image_border_color\";i:1;s:13:\"border_radius\";i:1;s:20:\"icon_secondary_color\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:1;s:19:\"hover_primary_color\";i:1;s:18:\"hover_border_color\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:14:\"_margin_mobile\";i:1;s:14:\"_margin_tablet\";i:1;}}}}s:5:\"image\";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_image\";a:2:{s:5:\"image\";i:1;s:10:\"image_size\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:1:{s:32:\"meafe_cf7_style_form_field_style\";a:7:{s:22:\"bcsffs_cf7_field_width\";i:1;s:38:\"bcsffs_cf7_field_typography_typography\";i:1;s:37:\"bcsffs_cf7_field_typography_font_size\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;s:29:\"bcsffs_cf7_field_border_color\";i:1;}}}}}'),(1375,753,'_wxr_import_user_slug','rishidemos'),(1376,753,'_demo_importer_plus_sites_imported_post','1'),(1377,753,'_demo_importer_enable_for_batch','1'),(1378,756,'_menu_item_type','post_type'),(1379,756,'_menu_item_object_id','751'),(1380,756,'_menu_item_object','page'),(1381,756,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1382,756,'_wp_old_date','2021-11-19'),(1383,756,'_wxr_import_user_slug','rishidemos'),(1384,756,'_demo_importer_plus_sites_imported_post','1'),(1385,756,'_demo_importer_enable_for_batch','1'),(1386,757,'_menu_item_type','post_type'),(1387,757,'_menu_item_object_id','749'),(1388,757,'_menu_item_object','page'),(1389,757,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1390,757,'_wp_old_date','2021-11-19'),(1391,757,'_wxr_import_user_slug','rishidemos'),(1392,757,'_demo_importer_plus_sites_imported_post','1'),(1393,757,'_demo_importer_enable_for_batch','1'),(1394,1561,'rt_customizer_post_meta_options','a:22:{s:16:\"page_title_panel\";s:0:\"\";s:23:\"page_title_hero_section\";s:7:\"default\";s:23:\"breadcrumbs_single_page\";s:2:\"no\";s:21:\"single_page_alignment\";s:4:\"left\";s:18:\"single_page_margin\";a:3:{s:7:\"desktop\";i:50;s:6:\"tablet\";i:30;s:6:\"mobile\";i:30;}s:32:\"82a3ead3cf865c2e15b28afcb4c5bf57\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"bc13053d70938542c932ff7990dd6c1f\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_page_streched_ed\";s:2:\"no\";s:23:\"vertical_spacing_source\";s:6:\"custom\";s:20:\"content_area_spacing\";s:4:\"none\";s:30:\"single_page_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:20:\"var(--paletteColor5)\";}}}s:32:\"single_page_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_page_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_page_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"8c3cfda1cac5e2d53fd09675bed65268\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1395,1561,'_wxr_import_user_slug','rishidemos'),(1396,1561,'_demo_importer_plus_sites_imported_post','1'),(1397,1561,'_demo_importer_enable_for_batch','1'),(1407,1794,'_rishi_sidebar_layout','default-sidebar'),(1408,1794,'_thumbnail_id','4255'),(1409,1794,'_wp_page_template','default'),(1410,1794,'_wp_old_slug','get-ready-for-the-next-era-of-business'),(1411,1794,'_rishi_post_view_count','8'),(1412,1794,'_wxr_import_user_slug','rishidemos'),(1413,1794,'_demo_importer_plus_sites_imported_post','1'),(1414,1794,'_demo_importer_enable_for_batch','1'),(1417,1795,'_rishi_sidebar_layout','default-sidebar'),(1418,1795,'_thumbnail_id','4253'),(1419,1795,'_wp_page_template','default'),(1420,1795,'_wp_old_slug','what-customer-truly-value'),(1421,1795,'_rishi_post_view_count','10'),(1422,1795,'_wxr_import_user_slug','rishidemos'),(1423,1795,'_demo_importer_plus_sites_imported_post','1'),(1424,1795,'_demo_importer_enable_for_batch','1'),(1427,3041,'fakerpress_flag','1'),(1428,3041,'_wp_page_template','default'),(1429,3041,'_rishi_sidebar_layout','default-sidebar'),(1430,3041,'_thumbnail_id','3080'),(1431,3041,'_wp_old_slug','take-action-for-the-best-strategy-benefits'),(1432,3041,'_rishi_post_view_count','13'),(1433,3041,'_wxr_import_user_slug','rishidemos'),(1434,3041,'_demo_importer_plus_sites_imported_post','1'),(1435,3041,'_demo_importer_enable_for_batch','1'),(1438,3046,'fakerpress_flag','1'),(1439,3046,'_wp_page_template','default'),(1440,3046,'_rishi_sidebar_layout','default-sidebar'),(1441,3046,'_thumbnail_id','3081'),(1442,3046,'_wp_old_slug','how-bidens-victory-will-affect-the-trade-globally'),(1443,3046,'_rishi_post_view_count','15'),(1444,3046,'_wxr_import_user_slug','rishidemos'),(1445,3046,'_demo_importer_plus_sites_imported_post','1'),(1446,3046,'_demo_importer_enable_for_batch','1'),(1449,3049,'fakerpress_flag','1'),(1450,3049,'_thumbnail_id','4252'),(1451,3049,'_wp_page_template','default'),(1452,3049,'_rishi_sidebar_layout','default-sidebar'),(1453,3049,'_wp_old_slug','international-network-to-provide-assistance'),(1454,3049,'rt_customizer_post_meta_options','a:23:{s:23:\"breadcrumbs_single_post\";s:2:\"no\";s:32:\"ac6f4437b761a65e81ec4945d22afcde\";s:0:\"\";s:19:\"page_structure_type\";s:7:\"default\";s:32:\"9b7b8cd0b0738b9502e0ee67904188f2\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_post_streched_ed\";s:2:\"no\";s:32:\"40cbf79a5a19b8c39fce23bbf29da2ff\";s:0:\"\";s:23:\"vertical_spacing_source\";s:7:\"inherit\";s:20:\"content_area_spacing\";s:4:\"both\";s:30:\"single_post_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}s:32:\"single_post_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_post_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_post_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"2004718aac23461497b103a68313a607\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:17:\"disable_post_tags\";s:2:\"no\";s:18:\"disable_author_box\";s:2:\"no\";s:24:\"disable_posts_navigation\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:21:\"disable_related_posts\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";}'),(1455,3049,'_rishi_post_view_count','9'),(1456,3049,'_wxr_import_user_slug','rishidemos'),(1457,3049,'_demo_importer_plus_sites_imported_post','1'),(1458,3049,'_demo_importer_enable_for_batch','1'),(1461,3059,'_thumbnail_id','3087'),(1462,3059,'_rishi_sidebar_layout','default-sidebar'),(1463,3059,'rt_customizer_post_meta_options','a:35:{s:23:\"breadcrumbs_single_post\";s:2:\"no\";s:32:\"c3e6956d1ccd71bf68b6c4605ecd497d\";s:0:\"\";s:19:\"page_structure_type\";s:15:\"default-sidebar\";s:32:\"1ec0415047854fafdf37351f756b2a5f\";s:0:\"\";s:20:\"content_style_source\";s:7:\"inherit\";s:13:\"content_style\";s:10:\"box-layout\";s:21:\"blog_post_streched_ed\";s:2:\"no\";s:32:\"7e2d0e463d958e1955a7fa7580abda8c\";s:0:\"\";s:23:\"vertical_spacing_source\";s:7:\"inherit\";s:20:\"content_area_spacing\";s:4:\"both\";s:30:\"single_post_content_background\";a:10:{s:15:\"background_type\";s:5:\"color\";s:18:\"background_pattern\";s:6:\"type-1\";s:16:\"background_image\";a:3:{s:13:\"attachment_id\";N;s:1:\"x\";i:0;s:1:\"y\";i:0;}s:8:\"gradient\";s:65:\"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\";s:17:\"background_repeat\";s:9:\"no-repeat\";s:15:\"background_size\";s:4:\"auto\";s:21:\"background_attachment\";s:6:\"scroll\";s:12:\"patternColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#e5e7ea\";}}s:12:\"overlayColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:16:\"CT_CSS_SKIP_RULE\";}}s:15:\"backgroundColor\";a:1:{s:7:\"default\";a:1:{s:5:\"color\";s:7:\"#ffffff\";}}}s:32:\"single_post_content_boxed_shadow\";a:8:{s:7:\"inherit\";b:0;s:4:\"blur\";i:18;s:6:\"spread\";i:-6;s:8:\"v_offset\";i:12;s:8:\"h_offset\";i:0;s:5:\"inset\";b:0;s:6:\"enable\";b:0;s:5:\"color\";a:1:{s:5:\"color\";s:23:\"rgba(34, 56, 101, 0.04)\";}}s:33:\"single_post_boxed_content_spacing\";a:5:{s:3:\"top\";s:4:\"40px\";s:6:\"bottom\";s:4:\"40px\";s:4:\"left\";s:4:\"40px\";s:5:\"right\";s:4:\"40px\";s:6:\"linked\";b:1;}s:32:\"single_post_content_boxed_radius\";a:5:{s:3:\"top\";s:3:\"3px\";s:6:\"bottom\";s:3:\"3px\";s:4:\"left\";s:3:\"3px\";s:5:\"right\";s:3:\"3px\";s:6:\"linked\";b:1;}s:32:\"5de8b70ca9ab74a5ec2edfb2cc837924\";s:0:\"\";s:22:\"disable_featured_image\";s:2:\"no\";s:17:\"disable_post_tags\";s:2:\"no\";s:18:\"disable_author_box\";s:2:\"no\";s:24:\"disable_posts_navigation\";s:2:\"no\";s:16:\"disable_comments\";s:2:\"no\";s:21:\"disable_related_posts\";s:2:\"no\";s:14:\"disable_header\";s:2:\"no\";s:14:\"disable_footer\";s:2:\"no\";s:32:\"ffea88e7de3d048c78b6cc36f0616831\";s:0:\"\";s:32:\"9c88b8310aaee1b20a7bed7583dce14e\";s:0:\"\";s:32:\"90e1f208bd3a4c3318f0998189742d82\";s:0:\"\";s:32:\"a6b1bf521ddad8095d559ca7cddd1345\";s:0:\"\";s:32:\"384bb551a561ba4139133dab8a765ce5\";s:0:\"\";s:32:\"b49c23fb4caaace8dc918d53cf14b822\";s:0:\"\";s:32:\"08f5003cf9188750476731cf32f048dd\";s:0:\"\";s:32:\"87a4bf6e8cbaea6017b5018c129d70d9\";s:0:\"\";s:32:\"67943ce15721eb52b22659bc8c32ffb4\";s:0:\"\";s:32:\"83bc7a8f20496fa52b001dbd94694823\";s:0:\"\";s:32:\"0f650e44108f473790c187046df1df9f\";s:0:\"\";s:32:\"bc7af0f0dbd460f0d15dbdf53c332c43\";s:0:\"\";}'),(1464,3059,'_wp_page_template','default'),(1465,3059,'_wp_old_slug','transforming-into-the-digital-enterprize'),(1466,3059,'_rishi_post_view_count','14'),(1467,3059,'_wxr_import_user_slug','rishidemos'),(1468,3059,'_demo_importer_plus_sites_imported_post','1'),(1469,3059,'_demo_importer_enable_for_batch','1'),(1470,3129,'_menu_item_type','post_type'),(1471,3129,'_menu_item_object_id','106'),(1472,3129,'_menu_item_object','page'),(1473,3129,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1474,3129,'_wxr_import_user_slug','rishidemos'),(1475,3129,'_demo_importer_plus_sites_imported_post','1'),(1476,3129,'_demo_importer_enable_for_batch','1'),(1484,3131,'_menu_item_type','post_type'),(1485,3131,'_menu_item_object_id','753'),(1486,3131,'_menu_item_object','page'),(1487,3131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1488,3131,'_wxr_import_user_slug','rishidemos'),(1489,3131,'_demo_importer_plus_sites_imported_post','1'),(1490,3131,'_demo_importer_enable_for_batch','1'),(1491,3132,'_menu_item_type','post_type'),(1492,3132,'_menu_item_object_id','749'),(1493,3132,'_menu_item_object','page'),(1494,3132,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1495,3132,'_wxr_import_user_slug','rishidemos'),(1496,3132,'_demo_importer_plus_sites_imported_post','1'),(1497,3132,'_demo_importer_enable_for_batch','1'),(1498,3134,'_menu_item_type','post_type'),(1499,3134,'_menu_item_object_id','751'),(1500,3134,'_menu_item_object','page'),(1501,3134,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(1502,3134,'_wxr_import_user_slug','rishidemos'),(1503,3134,'_demo_importer_plus_sites_imported_post','1'),(1504,3134,'_demo_importer_enable_for_batch','1'),(1505,1172,'_form','[text* Your-full-name placeholder \"Full Name\"]\n\n[date* Date placeholder \"03/08/2020\"]\n\n[number* NumberofSeats placeholder \"Number of Seats\"]\n\n[number* your-number placeholder \"Phone Number\"]\n\n[email* your-email placeholder \"Email Address\"]\n\n[submit \"Make a Reservation\"]'),(1506,1172,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1507,1172,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1508,1172,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1509,1172,'_locale','en_US'),(1510,1172,'_wxr_import_user_slug','rishidemos'),(1511,1172,'_demo_importer_plus_sites_imported_post','1'),(1512,1172,'_demo_importer_enable_for_batch','1'),(1513,4081,'_form','[text* Your-full-name placeholder \"Full Name\"]\n\n[number* your-number placeholder \"Phone Number\"]\n\n[email* your-email-address placeholder \"Your Email Address\"]\n\n[textarea* your-message placeholder \"Message\"]\n\n[submit \"Send Message\"]'),(1514,4081,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:19:\"[_site_admin_email]\";s:4:\"body\";s:163:\"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:22:\"Reply-To: [your-email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1515,4081,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:30:\"[_site_title] \"[your-subject]\"\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@rishidemos.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:105:\"Message Body:\n[your-message]\n\n-- \nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(1516,4081,'_messages','a:22:{s:12:\"mail_sent_ok\";s:45:\"Thank you for your message. It has been sent.\";s:12:\"mail_sent_ng\";s:71:\"There was an error trying to send your message. Please try again later.\";s:16:\"validation_error\";s:61:\"One or more fields have an error. Please check and try again.\";s:4:\"spam\";s:71:\"There was an error trying to send your message. Please try again later.\";s:12:\"accept_terms\";s:69:\"You must accept the terms and conditions before sending your message.\";s:16:\"invalid_required\";s:22:\"The field is required.\";s:16:\"invalid_too_long\";s:22:\"The field is too long.\";s:17:\"invalid_too_short\";s:23:\"The field is too short.\";s:13:\"upload_failed\";s:46:\"There was an unknown error uploading the file.\";s:24:\"upload_file_type_invalid\";s:49:\"You are not allowed to upload files of this type.\";s:21:\"upload_file_too_large\";s:20:\"The file is too big.\";s:23:\"upload_failed_php_error\";s:38:\"There was an error uploading the file.\";s:12:\"invalid_date\";s:29:\"The date format is incorrect.\";s:14:\"date_too_early\";s:44:\"The date is before the earliest one allowed.\";s:13:\"date_too_late\";s:41:\"The date is after the latest one allowed.\";s:14:\"invalid_number\";s:29:\"The number format is invalid.\";s:16:\"number_too_small\";s:47:\"The number is smaller than the minimum allowed.\";s:16:\"number_too_large\";s:46:\"The number is larger than the maximum allowed.\";s:23:\"quiz_answer_not_correct\";s:36:\"The answer to the quiz is incorrect.\";s:13:\"invalid_email\";s:38:\"The e-mail address entered is invalid.\";s:11:\"invalid_url\";s:19:\"The URL is invalid.\";s:11:\"invalid_tel\";s:32:\"The telephone number is invalid.\";}'),(1517,4081,'_locale','en_US'),(1518,4081,'_config_errors','a:1:{s:23:\"mail.additional_headers\";a:1:{i:0;a:2:{s:4:\"code\";i:102;s:4:\"args\";a:3:{s:7:\"message\";s:51:\"Invalid mailbox syntax is used in the %name% field.\";s:6:\"params\";a:1:{s:4:\"name\";s:8:\"Reply-To\";}s:4:\"link\";s:68:\"https://contactform7.com/configuration-errors/invalid-mailbox-syntax\";}}}}'),(1519,4081,'_wxr_import_user_slug','rishidemos'),(1520,4081,'_demo_importer_plus_sites_imported_post','1'),(1521,4081,'_demo_importer_enable_for_batch','1'),(1528,1561,'_edit_last','2'),(1529,1561,'_wp_page_template','default'),(1530,1561,'_edit_lock','1694094483:2'),(1534,115,'_edit_lock','1694094487:2'),(1535,115,'_last_editor_used_jetpack','block-editor'),(1536,4701,'_elementor_edit_mode','builder'),(1537,4701,'_elementor_template_type','kit'),(1538,4701,'_elementor_version','3.4.7'),(1539,4701,'_wp_page_template','default'),(1540,4701,'_elementor_page_settings','a:14:{s:13:\"system_colors\";a:4:{i:0;a:2:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";}i:1;a:2:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";}i:2;a:2:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";}i:3;a:2:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";}}s:13:\"custom_colors\";a:904:{i:0;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:8;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:9;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:10;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:11;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:12;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:13;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:14;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:15;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:16;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:17;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:18;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:19;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:20;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:21;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:22;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:23;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:24;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:25;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:26;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:27;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:28;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:29;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:30;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:31;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:32;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:33;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:34;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:35;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:36;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:37;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:38;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:39;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:40;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:41;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:42;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:43;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:44;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:45;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:46;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:47;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:48;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:49;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:50;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:51;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:52;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:53;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:54;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:55;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:56;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:57;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:58;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:59;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:60;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:61;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:62;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:63;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:64;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:65;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:66;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:67;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:68;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:69;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:70;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:71;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:72;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:73;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:74;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:75;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:76;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:77;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:78;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:79;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:80;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:81;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:82;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:83;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:84;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:85;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:86;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:87;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:88;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:89;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:90;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:91;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:92;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:93;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:94;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:95;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:96;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:97;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:98;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:99;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:100;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:101;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:102;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:103;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:104;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:105;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:106;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:107;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:108;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:109;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:110;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:111;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:112;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:113;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:114;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:115;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:116;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:117;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:118;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:119;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:120;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:121;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:122;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:123;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:124;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:125;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:126;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:127;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:128;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:129;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:130;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:131;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:132;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:133;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:134;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:135;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:136;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:137;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:138;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:139;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:140;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:141;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:142;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:143;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:144;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:145;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:146;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:147;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:148;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:149;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:150;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:151;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:152;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:153;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:154;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:155;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:156;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:157;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:158;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:159;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:160;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:161;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:162;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:163;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:164;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:165;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:166;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:167;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:168;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:169;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:170;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:171;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:172;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:173;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:174;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:175;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:176;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:177;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:178;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:179;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:180;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:181;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:182;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:183;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:184;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:185;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:186;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:187;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:188;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:189;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:190;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:191;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:192;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:193;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:194;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:195;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:196;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:197;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:198;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:199;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:200;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:201;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:202;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:203;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:204;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:205;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:206;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:207;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:208;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:209;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:210;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:211;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:212;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:213;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:214;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:215;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:216;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:217;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:218;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:219;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:220;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:221;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:222;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:223;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:224;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:225;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:226;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:227;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:228;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:229;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:230;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:231;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:232;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:233;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:234;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:235;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:236;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:237;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:238;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:239;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:240;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:241;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:242;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:243;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:244;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:245;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:246;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:247;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:248;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:249;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:250;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:251;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:252;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:253;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:254;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:255;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:256;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:257;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:258;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:259;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:260;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:261;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:262;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:263;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:264;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:265;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:266;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:267;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:268;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:269;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:270;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:271;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:272;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:273;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:274;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:275;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:276;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:277;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:278;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:279;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:280;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:281;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:282;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:283;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:284;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:285;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:286;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:287;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:288;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:289;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:290;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:291;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:292;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:293;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:294;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:295;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:296;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:297;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:298;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:299;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:300;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:301;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:302;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:303;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:304;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:305;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:306;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:307;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:308;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:309;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:310;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:311;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:312;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:313;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:314;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:315;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:316;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:317;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:318;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:319;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:320;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:321;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:322;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:323;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:324;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:325;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:326;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:327;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:328;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:329;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:330;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:331;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:332;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:333;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:334;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:335;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:336;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:337;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:338;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:339;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:340;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:341;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:342;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:343;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:344;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:345;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:346;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:347;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:348;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:349;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:350;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:351;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:352;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:353;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:354;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:355;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:356;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:357;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:358;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:359;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:360;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:361;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:362;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:363;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:364;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:365;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:366;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:367;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:368;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:369;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:370;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:371;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:372;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:373;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:374;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:375;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:376;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:377;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:378;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:379;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:380;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:381;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:382;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:383;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:384;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:385;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:386;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:387;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:388;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:389;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:390;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:391;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:392;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:393;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:394;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:395;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:396;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:397;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:398;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:399;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:400;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:401;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:402;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:403;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:404;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:405;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:406;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:407;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:408;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:409;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:410;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:411;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:412;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:413;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:414;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:415;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:416;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:417;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:418;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:419;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:420;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:421;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:422;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:423;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:424;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:425;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:426;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:427;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:428;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:429;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:430;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:431;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:432;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:433;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:434;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:435;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:436;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:437;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:438;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:439;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:440;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:441;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:442;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:443;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:444;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:445;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:446;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:447;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:448;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:449;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:450;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:451;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:452;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:453;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:454;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:455;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:456;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:457;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:458;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:459;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:460;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:461;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:462;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:463;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:464;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:465;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:466;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:467;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:468;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:469;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:470;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:471;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:472;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:473;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:474;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:475;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:476;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:477;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:478;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:479;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:480;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:481;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:482;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:483;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:484;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:485;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:486;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:487;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:488;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:489;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:490;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:491;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:492;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:493;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:494;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:495;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:496;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:497;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:498;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:499;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:500;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:501;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:502;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:503;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:504;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:505;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:506;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:507;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:508;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:509;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:510;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:511;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:512;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:513;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:514;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:515;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:516;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:517;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:518;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:519;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:520;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:521;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:522;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:523;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:524;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:525;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:526;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:527;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:528;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:529;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:530;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:531;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:532;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:533;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:534;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:535;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:536;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:537;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:538;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:539;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:540;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:541;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:542;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:543;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:544;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:545;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:546;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:547;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:548;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:549;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:550;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:551;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:552;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:553;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:554;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:555;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:556;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:557;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:558;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:559;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:560;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:561;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:562;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:563;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:564;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:565;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:566;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:567;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:568;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:569;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:570;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:571;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:572;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:573;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:574;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:575;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:576;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:577;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:578;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:579;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:580;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:581;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:582;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:583;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:584;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:585;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:586;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:587;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:588;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:589;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:590;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:591;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:592;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:593;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:594;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:595;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:596;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:597;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:598;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:599;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:600;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:601;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:602;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:603;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:604;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:605;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:606;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:607;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:608;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:609;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:610;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:611;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:612;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:613;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:614;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:615;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:616;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:617;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:618;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:619;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:620;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:621;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:622;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:623;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:624;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:625;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:626;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:627;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:628;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:629;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:630;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:631;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:632;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:633;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:634;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:635;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:636;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:637;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:638;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:639;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:640;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:641;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:642;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:643;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:644;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:645;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:646;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:647;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:648;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:649;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:650;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:651;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:652;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:653;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:654;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:655;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:656;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:657;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:658;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:659;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:660;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:661;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:662;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:663;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:664;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:665;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:666;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:667;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:668;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:669;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:670;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:671;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:672;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:673;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:674;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:675;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:676;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:677;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:678;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:679;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:680;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:681;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:682;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:683;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:684;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:685;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:686;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:687;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:688;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:689;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:690;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:691;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:692;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:693;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:694;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:695;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:696;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:697;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:698;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:699;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:700;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:701;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:702;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:703;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:704;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:705;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:706;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:707;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:708;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:709;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:710;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:711;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:712;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:713;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:714;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:715;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:716;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:717;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:718;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:719;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:720;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:721;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:722;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:723;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:724;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:725;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:726;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:727;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:728;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:729;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:730;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:731;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:732;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:733;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:734;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:735;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:736;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:737;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:738;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:739;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:740;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:741;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:742;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:743;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:744;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:745;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:746;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:747;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:748;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:749;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:750;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:751;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:752;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:753;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:754;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:755;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:756;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:757;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:758;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:759;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:760;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:761;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:762;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:763;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:764;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:765;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:766;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:767;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:768;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:769;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:770;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:771;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:772;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:773;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:774;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:775;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:776;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:777;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:778;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:779;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:780;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:781;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:782;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:783;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:784;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:785;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:786;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:787;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:788;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:789;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:790;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:791;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:792;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:793;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:794;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:795;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:796;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:797;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:798;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:799;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:800;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:801;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:802;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:803;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:804;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:805;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:806;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:807;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:808;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:809;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:810;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:811;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:812;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:813;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:814;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:815;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:816;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:817;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:818;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:819;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:820;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:821;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:822;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:823;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:824;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:825;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:826;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:827;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:828;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:829;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:830;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:831;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:832;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:833;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:834;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:835;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:836;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:837;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:838;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:839;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:840;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:841;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:842;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:843;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:844;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:845;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:846;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:847;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:848;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:849;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:850;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:851;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:852;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:853;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:854;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:855;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:856;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:857;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:858;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:859;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:860;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:861;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:862;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:863;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:864;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:865;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:866;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:867;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:868;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:869;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:870;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:871;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:872;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:873;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:874;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:875;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:876;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:877;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:878;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:879;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:880;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:881;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:882;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:883;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:884;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:885;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:886;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:887;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:888;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:889;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:890;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:891;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:892;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:893;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:894;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:895;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}i:896;a:3:{s:3:\"_id\";s:6:\"rishi1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:897;a:3:{s:3:\"_id\";s:6:\"rishi2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:898;a:3:{s:3:\"_id\";s:6:\"rishi3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:899;a:3:{s:3:\"_id\";s:6:\"rishi4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:900;a:3:{s:3:\"_id\";s:6:\"rishi5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:901;a:3:{s:3:\"_id\";s:6:\"rishi6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:902;a:3:{s:3:\"_id\";s:6:\"rishi7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:903;a:3:{s:3:\"_id\";s:6:\"rishi8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:17:\"system_typography\";a:4:{i:0;a:7:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:1;a:7:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:22:\"typography_font_family\";s:11:\"Nunito Sans\";s:22:\"typography_font_weight\";s:3:\"800\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:45;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"em\";s:4:\"size\";i:1;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:2;a:7:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";s:0:\"\";s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}i:3;a:7:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:22:\"typography_font_family\";s:7:\"Poppins\";s:22:\"typography_font_weight\";s:3:\"400\";s:20:\"typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:20;s:5:\"sizes\";a:0:{}}s:22:\"typography_line_height\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:40;s:5:\"sizes\";a:0:{}}s:25:\"typography_letter_spacing\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";d:0.25;s:5:\"sizes\";a:0:{}}}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:9:\"site_name\";s:10:\"Restaurant\";s:16:\"site_description\";s:27:\"Rishi Theme Restaurant Demo\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:15:\"activeItemIndex\";i:1;s:12:\"rishi_colors\";a:8:{i:0;a:3:{s:3:\"_id\";s:8:\"palette1\";s:5:\"title\";s:13:\"Theme Color 1\";s:5:\"color\";s:7:\"#3e3e3e\";}i:1;a:3:{s:3:\"_id\";s:8:\"palette2\";s:5:\"title\";s:13:\"Theme Color 2\";s:5:\"color\";s:7:\"#000000\";}i:2;a:3:{s:3:\"_id\";s:8:\"palette3\";s:5:\"title\";s:13:\"Theme Color 3\";s:5:\"color\";s:7:\"#ff785b\";}i:3;a:3:{s:3:\"_id\";s:8:\"palette4\";s:5:\"title\";s:13:\"Theme Color 4\";s:5:\"color\";s:7:\"#ff9f8a\";}i:4;a:3:{s:3:\"_id\";s:8:\"palette5\";s:5:\"title\";s:13:\"Theme Color 5\";s:5:\"color\";s:7:\"#FFFFFF\";}i:5;a:3:{s:3:\"_id\";s:8:\"palette6\";s:5:\"title\";s:13:\"Theme Color 6\";s:5:\"color\";s:7:\"#a1a1a1\";}i:6;a:3:{s:3:\"_id\";s:8:\"palette7\";s:5:\"title\";s:13:\"Theme Color 7\";s:5:\"color\";s:7:\"#fff8f7\";}i:7;a:3:{s:3:\"_id\";s:8:\"palette8\";s:5:\"title\";s:13:\"Theme Color 8\";s:5:\"color\";s:7:\"#202020\";}}s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;s:15:\"container_width\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:1190;s:5:\"sizes\";a:0:{}}s:21:\"space_between_widgets\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:0;s:5:\"sizes\";a:0:{}}}'),(1541,4701,'_elementor_data','[]'),(1542,4701,'_elementor_page_assets','a:0:{}'),(1550,4705,'_edit_lock','1694138560:2'),(1559,4708,'_edit_lock','1694138843:2'),(1566,106,'_edit_lock','1697384322:2'),(1592,4712,'_wp_attached_file','2023/09/interior.jpg'),(1593,4712,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:404;s:4:\"file\";s:20:\"2023/09/interior.jpg\";s:8:\"filesize\";i:91611;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"interior-300x189.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20828;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"interior-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10874;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"interior-500x404.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:60271;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"interior-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26384;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"interior-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29964;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"interior-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18810;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"interior-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36702;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"interior-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39057;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"interior-570x404.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:404;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:67654;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"interior-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18555;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"interior-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51588;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"interior-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12795;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"interior-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28147;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"interior-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28177;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1596,4713,'_wp_attached_file','2023/09/food.jpg'),(1597,4713,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:640;s:6:\"height\";i:427;s:4:\"file\";s:16:\"2023/09/food.jpg\";s:8:\"filesize\";i:52538;s:5:\"sizes\";a:14:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"food-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15738;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"food-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9219;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"food-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33735;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"food-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18612;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"food-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20299;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"food-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14292;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"food-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24424;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"food-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25851;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"food-570x427.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:427;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40100;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"food-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13975;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"food-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31580;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"food-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10408;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"food-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19714;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"food-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19401;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1645,106,'_elementor_pro_version','3.14.1'),(1754,4735,'_wp_attached_file','2023/09/daaal.jpg'),(1755,4735,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:17:\"2023/09/daaal.jpg\";s:8:\"filesize\";i:67056;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"daaal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20272;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"daaal-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7289;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"daaal-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:77175;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"daaal-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36325;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"daaal-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18811;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"daaal-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20146;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"daaal-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13290;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"daaal-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26091;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"daaal-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27858;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"daaal-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48569;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"daaal-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:12814;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"daaal-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32940;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"daaal-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8868;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"daaal-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20272;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"daaal-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78534;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"daaal-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56675;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"daaal-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18953;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1756,4735,'_wp_attachment_image_alt','healthy food restaurant'),(1757,4736,'_wp_attached_file','2023/09/sbzi-alo.jpg'),(1758,4736,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:960;s:4:\"file\";s:20:\"2023/09/sbzi-alo.jpg\";s:8:\"filesize\";i:86993;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23381;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7523;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:98584;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:45437;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21865;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24433;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14790;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31137;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33363;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61081;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14528;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40463;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9288;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23381;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:102820;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:72460;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:20:\"sbzi-alo-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23039;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1759,4736,'_wp_attachment_image_alt',''),(1760,4737,'_wp_attached_file','2023/09/thali.jpg'),(1761,4737,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/09/thali.jpg\";s:8:\"filesize\";i:430630;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"thali-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:21854;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"thali-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185032;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"thali-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8789;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"thali-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:111847;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"thali-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58144;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"thali-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27134;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"thali-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28661;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"thali-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18618;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"thali-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38727;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"thali-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41518;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"thali-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:82171;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"thali-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16556;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"thali-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51666;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"thali-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10866;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"thali-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28811;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"thali-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:185761;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"thali-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:101813;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"thali-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26880;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1762,4737,'_wp_attachment_image_alt',''),(1818,4744,'_wp_attached_file','2023/09/menu.jpg'),(1819,4744,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:960;s:6:\"height\";i:660;s:4:\"file\";s:16:\"2023/09/menu.jpg\";s:8:\"filesize\";i:106004;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:16:\"menu-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20696;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:16:\"menu-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9837;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:16:\"menu-768x528.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:528;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:92974;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:16:\"menu-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56015;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:16:\"menu-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27598;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:16:\"menu-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28628;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:16:\"menu-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18808;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:16:\"menu-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38428;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:16:\"menu-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41214;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:16:\"menu-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:76939;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:16:\"menu-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17373;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:16:\"menu-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:50466;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:16:\"menu-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11984;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:16:\"menu-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29129;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:16:\"menu-960x650.jpg\";s:5:\"width\";i:960;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:140467;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:16:\"menu-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:90793;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:16:\"menu-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27012;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1820,4745,'_wp_attached_file','2023/09/gravy.jpg'),(1821,4745,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:243;s:6:\"height\";i:174;s:4:\"file\";s:17:\"2023/09/gravy.jpg\";s:8:\"filesize\";i:27804;s:5:\"sizes\";a:3:{s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"gravy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:10793;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"gravy-197x174.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:174;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:17985;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"gravy-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13484;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1822,4746,'_wp_attached_file','2023/09/khana.jpg'),(1823,4746,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/09/khana.jpg\";s:8:\"filesize\";i:407602;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"khana-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20562;}s:5:\"large\";a:5:{s:4:\"file\";s:18:\"khana-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177940;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"khana-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:7823;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:17:\"khana-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:107529;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"khana-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:54997;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"khana-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24900;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"khana-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:27188;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"khana-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:16755;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"khana-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36153;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"khana-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38997;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"khana-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:78339;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"khana-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15448;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"khana-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:49990;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"khana-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9757;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"khana-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26609;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:18:\"khana-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:177992;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"khana-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:97474;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"khana-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25524;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1896,106,'_last_editor_used_jetpack','block-editor'),(1898,4756,'_edit_lock','1694743609:2'),(1901,4758,'_wp_attached_file','2023/09/7776956.jpg'),(1902,4758,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:19:\"2023/09/7776956.jpg\";s:8:\"filesize\";i:233662;s:5:\"sizes\";a:19:{s:6:\"medium\";a:5:{s:4:\"file\";s:19:\"7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35481;}s:5:\"large\";a:5:{s:4:\"file\";s:21:\"7776956-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:80524;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:19:\"7776956-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:29306;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:19:\"7776956-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:61790;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:19:\"7776956-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44925;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:19:\"7776956-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:36015;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:19:\"7776956-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38026;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:19:\"7776956-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:34005;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:19:\"7776956-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37832;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:19:\"7776956-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38752;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:19:\"7776956-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:48993;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:19:\"7776956-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33604;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:19:\"7776956-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47225;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:19:\"7776956-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:30156;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:19:\"7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:35481;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:21:\"7776956-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:123587;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:20:\"7776956-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:84003;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:19:\"7776956-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:58033;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:19:\"7776956-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37409;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1903,4758,'_edit_lock','1694743468:2'),(1904,4758,'_edit_last','2'),(1942,4769,'_wp_attached_file','2023/10/coffe.jpg'),(1943,4769,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:765;s:6:\"height\";i:1020;s:4:\"file\";s:17:\"2023/10/coffe.jpg\";s:8:\"filesize\";i:238076;s:5:\"sizes\";a:16:{s:6:\"medium\";a:5:{s:4:\"file\";s:17:\"coffe-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24132;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:17:\"coffe-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9277;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:17:\"coffe-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:51669;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:17:\"coffe-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28387;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:17:\"coffe-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:25734;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:17:\"coffe-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:20168;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:17:\"coffe-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37671;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:17:\"coffe-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40246;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:17:\"coffe-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:73494;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:17:\"coffe-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15645;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:17:\"coffe-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:41671;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:17:\"coffe-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:11444;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:17:\"coffe-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:28438;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:17:\"coffe-765x650.jpg\";s:5:\"width\";i:765;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:116996;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:17:\"coffe-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:81797;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:17:\"coffe-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:23997;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1944,4770,'_wp_attached_file','2023/10/minestrone-soup.jpg'),(1945,4770,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1360;s:6:\"height\";i:1020;s:4:\"file\";s:27:\"2023/10/minestrone-soup.jpg\";s:8:\"filesize\";i:196509;s:5:\"sizes\";a:18:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:15334;}s:5:\"large\";a:5:{s:4:\"file\";s:28:\"minestrone-soup-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:95303;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:8534;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:59604;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33926;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18680;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19546;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:14103;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:24510;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26023;}s:23:\"meafe-category-grid-one\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-570x530.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:530;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:47315;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:13086;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-570x320.jpg\";s:5:\"width\";i:570;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33882;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:9727;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:19234;}s:15:\"rishi-fullwidth\";a:5:{s:4:\"file\";s:28:\"minestrone-soup-1170x650.jpg\";s:5:\"width\";i:1170;s:6:\"height\";i:650;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:106082;}s:17:\"rishi-withsidebar\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-750x520.jpg\";s:5:\"width\";i:750;s:6:\"height\";i:520;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:56513;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:27:\"minestrone-soup-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:18655;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(1983,4775,'_wp_page_template','elementor_header_footer'),(1984,4775,'_elementor_edit_mode','builder'),(1985,4775,'_elementor_template_type','wp-page'),(1986,4775,'_elementor_version','3.16.5'),(1987,4775,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4770,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/minestrone-soup.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1988,4775,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1989,4775,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1990,4775,'_elementor_pro_version','3.14.1'),(1992,4776,'_wp_page_template','elementor_header_footer'),(1993,4776,'_elementor_edit_mode','builder'),(1994,4776,'_elementor_template_type','wp-page'),(1995,4776,'_elementor_version','3.16.5'),(1996,4776,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(1997,4776,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(1998,4776,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(1999,4776,'_elementor_pro_version','3.14.1'),(2002,4777,'_wp_page_template','elementor_header_footer'),(2003,4777,'_elementor_edit_mode','builder'),(2004,4777,'_elementor_template_type','wp-page'),(2005,4777,'_elementor_version','3.16.5'),(2006,4777,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2007,4777,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2008,4777,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2009,4777,'_elementor_pro_version','3.14.1'),(2011,4778,'_wp_page_template','elementor_header_footer'),(2012,4778,'_elementor_edit_mode','builder'),(2013,4778,'_elementor_template_type','wp-page'),(2014,4778,'_elementor_version','3.16.5'),(2015,4778,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2016,4778,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2017,4778,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2018,4778,'_elementor_pro_version','3.14.1'),(2020,4779,'_wp_page_template','elementor_header_footer'),(2021,4779,'_elementor_edit_mode','builder'),(2022,4779,'_elementor_template_type','wp-page'),(2023,4779,'_elementor_version','3.16.5'),(2024,4779,'_elementor_data','[{\"id\":\"56b3709d\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":4769,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/10\\/coffe-765x650.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"rishi-fullwidth\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"0230\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"background_image_mobile\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/interior.jpg\",\"id\":4712,\"alt\":\"\",\"source\":\"library\",\"size\":\"2048x2048\"},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"160\",\"right\":\"0\",\"bottom\":\"130\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"130\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"257e9f1f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"178d4854\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"5cd1898\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":52.58899999999999863575794734060764312744140625,\"space_between_widgets\":0,\"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\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":3,\"blur\":45,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"4691ef33\",\"elType\":\"widget\",\"settings\":{\"title\":\"Delicious Food For You.\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":50,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":36,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"28ffbf0c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"263647e\",\"elType\":\"widget\",\"settings\":{\"text\":\"View Our Menu\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_animation\":\"none\",\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true},{\"id\":\"7e6959c8\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":47.36800000000000210320649784989655017852783203125},\"elements\":[],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4c24a66\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"row\",\"flex_gap\":{\"unit\":\"px\",\"size\":0,\"column\":\"0\",\"row\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"61569c3\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"266d1db\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"id\":4744,\"size\":\"\",\"alt\":\"\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"0095f05\",\"elType\":\"container\",\"settings\":{\"flex_direction\":\"column\",\"content_width\":\"full\",\"width\":{\"unit\":\"%\",\"size\":\"50\"}},\"elements\":[{\"id\":\"667ab8b\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/thali.jpg\",\"id\":4737,\"size\":\"\",\"alt\":\"thali at healthy food restaurant\",\"source\":\"library\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"582f636c\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Offer section\"},\"elements\":[{\"id\":\"3f69d611\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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},\"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\":\"239999e\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"105\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"6dfdfd0\",\"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\":\"257082d\",\"elType\":\"widget\",\"settings\":{\"title\":\"What We Offer\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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},\"__globals__\":{\"title_color\":\"\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49e4874\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"014\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5d073f55\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"1\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"080\",\"left\":\"0\",\"isLinked\":false},\"border_width_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":0,\"bottom\":\"040\",\"left\":0,\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"070\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"50b28f24\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6dd74ce6\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"31\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/leaf.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"7f2f6695\",\"elType\":\"widget\",\"settings\":{\"title\":\"Organic Ingendiants\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52bea5c9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"23a803d9\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"334b2ee0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"\",\"url\":\"\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2afcb3e2\",\"elType\":\"widget\",\"settings\":{\"title\":\"Daily Fresh\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"658abe01\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"035\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"c5ac66f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"3c0affd1\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"33\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/chef.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"2da89fe7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Best Chefs\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c349003\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"017\",\"right\":\"0\",\"bottom\":\"025\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1a12ae34\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"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},\"_title\":\"story section\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"4270becc\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"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\":\"1d7b504\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"4e2f0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"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}},\"elements\":[{\"id\":\"18ee7d4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Story\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"9743e16\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"021\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"000\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"780a0cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"060\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"045\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"199670a1\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"15\",\"bottom\":\"010\",\"left\":\"15\",\"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},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"15\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"5d04e32c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4746,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/khana.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true},{\"id\":\"7e09dfc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"15\",\"bottom\":\"10\",\"left\":\"15\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"15\",\"isLinked\":false},\"animation\":\"fadeIn\"},\"elements\":[{\"id\":\"6ec794fa\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":4744,\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/menu.jpg\",\"alt\":\"\",\"source\":\"library\",\"size\":\"\"},\"image_size\":\"full\",\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"d37abb2\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1518,\"sizes\":[]},\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"0100\",\"right\":\"0\",\"bottom\":\"0100\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"30df197\",\"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\":\"6d2fcc2\",\"elType\":\"widget\",\"settings\":{\"btcgs_tabs_icon_show\":\"\",\"btcgs_tabs_tab\":[{\"btcgs_tabs_title\":\"Cheese Croissants\",\"_id\":\"9dd2635\",\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Cheese Croissants<\\/h3>\\nIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.\\n\\nMaking it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/healthyfoodrestaurant.in\\/wp-content\\/uploads\\/2023\\/09\\/daaal.jpg\",\"id\":4735,\"alt\":\"healthy food restaurant\",\"source\":\"library\",\"size\":\"\"}},{\"btcgs_tabs_title\":\"Bruschetti\",\"_id\":\"ee140a3\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\",\"id\":841,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Bruschetti<\\/h3>\\n\\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days \\u2014 the worst such drought for 60 seasons, researchers said.<\\/p>\\nThe deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015\"},{\"btcgs_tabs_title\":\"Awesome Vegetables\",\"_id\":\"25ef6aa\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/casey-lee-awj7sRviVXo-unsplash-1.jpg\",\"id\":864,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Awesome Vegetables\\n<\\/h3>\\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened\\u2026 the Vegan Pride Parade had their \\\"Festival\\\" earlier this week and even made me make a few vegan treats to celebrate.<\\/p>\\nAwesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.\"},{\"btcgs_tabs_title\":\"Tasty Snacks\",\"_id\":\"dead130\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\",\"id\":868,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Tasty Snacks\\n<\\/h3>\\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \\\"Snack\\\".<\\/p>\\nThis means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! \"},{\"btcgs_tabs_title\":\"All-Time Best Recipes\",\"_id\":\"bcff76d\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/stil-u2Lp8tXIcjw-unsplash-1.jpg\",\"id\":860,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">All-Time Best Recipes\\n\\n<\\/h3>\\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!<\\/p>\\nAll-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here\"},{\"btcgs_tabs_title\":\"Meal For Whole Family\",\"_id\":\"0499fa7\",\"btcgs_tabs_title_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/brooke-lark-oaz0raysASk-unsplash-1.jpg\",\"id\":856,\"alt\":\"\",\"source\":\"library\"},\"btcgs_tabs_tab_content\":\"<h3 style=\\\"text-align: left;\\\">Meal For Whole Family\\n<\\/h3>\\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.<\\/p>\\nMeal For Whole Family in restaurant on 6\\/11 The best meals of the year, complete with food suggestions and recipe updates. \"}],\"btsts_tabs_title_typography_typography\":\"custom\",\"btsts_tabs_title_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btsts_tabs_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"btsts_tabs_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"btsts_tabs_color\":\"#02010100\",\"btsts_tabs_color_hover\":\"\",\"btsts_tabs_color_active\":\"\",\"btscs_tabs_content_text_color\":\"\",\"__globals__\":{\"btsts_tabs_text_color_hover\":\"globals\\/colors?id=rishi3\",\"btsts_tabs_text_color_active\":\"globals\\/colors?id=rishi3\",\"btscs_tabs_content_text_color\":\"\",\"btsts_tabs_text_color\":\"\"},\"btsts_tabs_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"030\",\"bottom\":\"030\",\"left\":\"0\",\"isLinked\":false},\"btsts_tabs_text_color\":\"\",\"btsts_tabs_text_color_hover\":\"#ff785b\",\"btsts_tabs_text_color_active\":\"#ff785b\",\"btscs_tabs_content_typography_typography\":\"custom\"},\"elements\":[],\"widgetType\":\"meafe-tabs\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4208d2cf\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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_color\":\"#FF785B00\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"070\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"_title\":\"Services Section\"},\"elements\":[{\"id\":\"45433bec\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"00\",\"right\":\"00\",\"bottom\":\"00\",\"left\":\"00\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"f3e4199\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"624ca4b\",\"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\":\"9de096c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Services\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Nunito Sans\",\"typography_font_size\":{\"unit\":\"px\",\"size\":45,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"px\",\"size\":65,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"title_color\":\"#000000\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6389025\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.<\\/p>\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"046\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"5f61c7fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"margin\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"090\",\"left\":0,\"isLinked\":false},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_color\":\"#0000001A\",\"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\":true},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"070\",\"right\":0,\"bottom\":\"080\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"52f9fab2\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"5a20e7df\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"37\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/Page-1.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"322e544e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Breakfast\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"65010173\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>It is a long established fact that a reader will be distracted by the readable content.<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1f799c27\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"47f76fdb\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"38\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/lunch.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"31072ee3\",\"elType\":\"widget\",\"settings\":{\"title\":\"Lunch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3894a5ab\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"52b0be37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"016\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"33ea319e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":\"39\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/wedding-dinner.png\"},\"image_size\":\"full\",\"align\":\"center\",\"image_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3882da67\",\"elType\":\"widget\",\"settings\":{\"title\":\"Dinner\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"%\",\"top\":\"\",\"right\":\"\",\"bottom\":\"\",\"left\":\"\",\"isLinked\":true},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.54000000000000003552713678800500929355621337890625,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"018\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h5\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f6e9ddb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the readable content.\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f8446\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"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\":\"70\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"1b4df0f2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"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\":\"4d1809d\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"090\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"80\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"31ed2f2\",\"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\":\"2171d12\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"eb2e307\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.2200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"352e14a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"055\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"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}},\"elements\":[{\"id\":\"4393cc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"55\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"35\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"0550a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Mussels Soup\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cayla-1.jpg\",\"id\":3163,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Italian Spaghetti\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Beef Burger\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\",\"id\":3188,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Stuffed Strawberry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/cheesecake-stuffed-strawberries-500x500-1.jpg\",\"id\":3189,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Scrambled Eggs in puff Pastry\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\",\"id\":3187,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true},{\"id\":\"a2ed205\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"55\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"035\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"c6c1a6d\",\"elType\":\"widget\",\"settings\":{\"bpmcgs_price_menu_items\":[{\"bpmcgs_price_menu_title\":\"Sicilian Meatballs\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"7b2de7c\",\"bpmcgs_price_after_title_type\":\"\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jason-leung-AUAuEgUxg5Q-unsplash.jpg\",\"id\":3197,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Seafood Salad\",\"bpmcgs_price_menu_price\":\"$49\",\"_id\":\"37b7f69\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\",\"id\":3198,\"alt\":\"\",\"source\":\"library\"}},{\"bpmcgs_price_menu_title\":\"Roasted Chicken\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\",\"id\":3199,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ad4dc01\"},{\"bpmcgs_price_menu_title\":\"Grilled Fish\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/jennifer-burk-gwBcamFtPr4-unsplash.jpg\",\"id\":3200,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"dd731f1\"},{\"bpmcgs_price_menu_title\":\"Soft-Boiled Organic Egg\",\"bpmcgs_price_menu_price\":\"$49\",\"bpmcgs_price_title_text\":\"Popular\",\"bpmcgs_price_menu_description\":\"It is a long established fact that a reader.\",\"bpmcgs_price_original_price\":\"$69\",\"bpmcgs_price_image_switch\":\"yes\",\"bpmcgs_price_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/tim-chow-MhpxHv0FKtE-unsplash.jpg\",\"id\":3201,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"ff80cd6\"}],\"bpmcgs_price_title_price_connector\":\"yes\",\"bpmsmis_items_spacing\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"bpmsts_title_margin\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsps_price_typography_typography\":\"custom\",\"bpmsps_price_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"bpmsds_description_typography_typography\":\"custom\",\"bpmsds_description_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"bpmsds_description_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"bpmsis_image_size_size\":\"full\",\"bpmsis_image_size_custom_dimension\":{\"width\":\"60\",\"height\":\"60\"},\"bpmsis_image_width\":{\"unit\":\"px\",\"size\":75,\"sizes\":[]},\"bpmstpcs_items_divider_borders\":{\"unit\":\"px\",\"size\":3,\"sizes\":[]},\"bpmstpcs_items_divider_color\":\"#00000033\",\"__globals__\":{\"bpmstss_suffix_text_color\":\"\",\"bpmsps_price_color\":\"globals\\/colors?id=rishi2\"},\"bpmsmis_items_spacing_mobile\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"bpmsts_title_typography_typography\":\"custom\",\"bpmsts_title_typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"bpmsds_description_color\":\"#878787\"},\"elements\":[],\"widgetType\":\"meafe-price-menu\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"666163b1\",\"elType\":\"section\",\"settings\":{\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"90\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"015\",\"bottom\":\"61\",\"left\":\"015\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi7\"}},\"elements\":[{\"id\":\"6eddfa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"e52857a\",\"elType\":\"widget\",\"settings\":{\"text\":\"View All Menu\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"button_background_hover_color\":\"#02010100\",\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"233c8621\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"content_width\":{\"unit\":\"px\",\"size\":1184,\"sizes\":[]},\"content_position\":\"top\",\"stretch_section\":\"section-stretched\",\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"100\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"015\",\"bottom\":\"080\",\"left\":\"015\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\"},\"elements\":[{\"id\":\"4c008e85\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.9140000000000014779288903810083866119384765625,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"035\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":false},\"padding_mobile\":{\"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},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"050\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"020\",\"bottom\":\"010\",\"left\":\"010\",\"isLinked\":false}},\"elements\":[{\"id\":\"67912ef4\",\"elType\":\"widget\",\"settings\":{\"title\":\"Our Head Chef\",\"typography_typography\":\"custom\",\"align_mobile\":\"center\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cf8764d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.<\\/p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search<\\/p>\",\"_margin\":{\"unit\":\"px\",\"top\":\"025\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":2,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.200000000000000011102230246251565404236316680908203125,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"73d4ec4c\",\"elType\":\"widget\",\"settings\":{\"image_size\":\"full\",\"image\":{\"id\":\"51\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/sign.png\"},\"align\":\"left\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"-15\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"17dc7395\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"content_position\":\"top\",\"space_between_widgets\":0,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"46\",\"bottom\":\"0\",\"left\":\"45\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"020\",\"isLinked\":false},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"35\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"2c4548ad\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":1029,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"3415601d\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":false},\"box_shadow_box_shadow_type\":\"yes\",\"box_shadow_box_shadow\":{\"horizontal\":0,\"vertical\":6,\"blur\":40,\"spread\":0,\"color\":\"rgba(0, 0, 0, 0.08)\"},\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"67e1e31a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"3a529080\",\"elType\":\"widget\",\"settings\":{\"title\":\"Jack Richard\",\"typography_typography\":\"custom\",\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"align\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":22,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.362999999999999989341858963598497211933135986328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"214da771\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Head Chef\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"left\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"4f85db0b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"content_position\":\"center\"},\"elements\":[{\"id\":\"4158cec3\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/facebook-logo.svg\",\"id\":767},\"library\":\"svg\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/twitter.svg\",\"id\":768},\"library\":\"svg\"},\"_id\":\"cc0914c\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/instagram.svg\",\"id\":769},\"library\":\"svg\"},\"_id\":\"1ea09c3\"},{\"social_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/linkedin.svg\",\"id\":770},\"library\":\"svg\"},\"_id\":\"04d5833\"}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"08\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align\":\"right\",\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"center\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"121a9128\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":3364,\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/eaters-collective-12eHC6FxPyg-unsplash.jpg\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000099\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"background_overlay_color\":\"\"},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"70\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"80\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"49efab6a\",\"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\":\"437317b\",\"elType\":\"section\",\"settings\":{\"margin_tablet\":{\"unit\":\"px\",\"top\":\"-100\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"5f79117\",\"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\":\"dec94bf\",\"elType\":\"widget\",\"settings\":{\"btccgs_testimonial_carousel\":[{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"Lisa Stoner\",\"btccgs_testimonial_carousel_position\":\"Marketing Manager Of XYZ Company\",\"_id\":\"9552237\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-20.jpg\",\"id\":1110,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a630c5a\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-22.jpg\",\"id\":1109,\"alt\":\"\",\"source\":\"library\"}},{\"btccgs_testimonial_carousel_title\":\"\",\"btccgs_testimonial_carousel_content\":\"\\u201cIt is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. \",\"btccgs_testimonial_carousel_name\":\"John Doe\",\"btccgs_testimonial_carousel_position\":\"Managing Director\",\"_id\":\"a8b1bf3\",\"btccgs_testimonial_carousel_image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/screenshot-4.jpg\",\"id\":1117,\"alt\":\"\",\"source\":\"library\"}}],\"btccgs_testimonial_carousel_layouts\":\"2\",\"btcsgs_testimonial_title_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"btcsgs_testimonial_title_color\":\"#FFFFFF\",\"btcsgs_testimonial_content_color\":\"#FFFFFF\",\"btcsis_testimonial_image_width\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btcsis_testimonial_image_height\":{\"unit\":\"px\",\"size\":125,\"sizes\":[]},\"btsrs_testimonial_name_color\":\"#FFFFFF\",\"btsrs_testimonial_name_spacing\":{\"unit\":\"px\",\"size\":5,\"sizes\":[]},\"btsrs_testimonial_title_color\":\"#FFFFFF\",\"__globals__\":{\"btcsgs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsgs_testimonial_content_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_name_color\":\"globals\\/colors?id=rishi5\",\"btsrs_testimonial_title_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_color\":\"globals\\/colors?id=rishi5\",\"btcsna_testimonial_arrow_bg_color\":\"\"},\"btcsgs_testimonial_content_padding\":{\"unit\":\"px\",\"top\":\"35\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"btcsgs_testimonial_content_typography_typography\":\"custom\",\"btcsgs_testimonial_content_typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"btccgs_testimonial_carousel_arrow_prev_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974.svg\",\"id\":4695},\"library\":\"svg\"},\"btccgs_testimonial_carousel_arrow_next_icon\":{\"value\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Path-24974-1.svg\",\"id\":4697},\"library\":\"svg\"},\"btccgs_testimonial_carousel_show_carousel_loop\":\"yes\"},\"elements\":[],\"widgetType\":\"meafe-testimonial-carousel\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dcc964c\",\"elType\":\"section\",\"settings\":{\"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\":\"b861599\",\"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\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"61a18fa1\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"stretch_section\":\"section-stretched\",\"background_background\":\"classic\",\"background_image\":{\"id\":\"79\",\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/02\\/make-a-reservation.png\"},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":855,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"90\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0120\",\"right\":\"0\",\"bottom\":\"0120\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"090\",\"right\":\"015\",\"bottom\":\"090\",\"left\":\"015\",\"isLinked\":false},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000073\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]}},\"elements\":[{\"id\":\"4687a682\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0},\"elements\":[{\"id\":\"62d9923\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":830,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"070\",\"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\":\"35\",\"left\":0,\"isLinked\":false}},\"elements\":[{\"id\":\"993669b\",\"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\":\"36c1ef7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Make a Reservation\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":30,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.1499999999999999944488848768742172978818416595458984375,\"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},\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"988f76d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.\",\"align\":\"center\",\"_margin\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"013\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi5\"},\"_z_index\":1},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true}],\"isInner\":true},{\"id\":\"1511c69\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":500,\"sizes\":[]},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"\"}},\"elements\":[{\"id\":\"291591a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"035\",\"bottom\":\"30\",\"left\":\"035\",\"isLinked\":false},\"background_background\":\"classic\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=rishi4\"},\"animation\":\"fadeIn\",\"animation_duration\":\"slow\"},\"elements\":[{\"id\":\"cc59117\",\"elType\":\"widget\",\"settings\":{\"bccgs_cf7_form_id\":\"1172\",\"bcsffs_cf7_field_width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"bcsffs_cf7_field_padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"025\",\"bottom\":\"015\",\"left\":\"025\",\"isLinked\":false},\"bcsffs_cf7_field_bg_color\":\"#FF785B00\",\"bcssbs_cf7_submit_typography_typography\":\"custom\",\"bcssbs_cf7_submit_typography_font_family\":\"Nunito Sans\",\"bcssbs_cf7_submit_typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"bcssbs_cf7_submit_typography_font_weight\":\"400\",\"bcssbs_cf7_submit_border_border\":\"solid\",\"bcssbs_cf7_submit_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"__globals__\":{\"bcsffs_cf7_field_placeholder_color\":\"globals\\/colors?id=rishi5\",\"bcsffs_cf7_field_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_border_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_bg_color\":\"globals\\/colors?id=rishi5\",\"submit_hover_color\":\"globals\\/colors?id=rishi5\",\"bcssbs_cf7_submit_hover_bg_color\":\"globals\\/colors?id=rishi2\",\"bcssbs_cf7_submit_hover_border_color\":\"globals\\/colors?id=rishi2\",\"bcsffs_cf7_field_bg_color\":\"\",\"bcsffs_cf7_field_border_color\":\"globals\\/colors?id=rishi5\"},\"bcsffs_cf7_field_placeholder_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_border_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_color\":\"#000000\",\"bcssbs_cf7_submit_bg_color\":\"#FFFFFF\",\"submit_hover_color\":\"#FFFFFF\",\"bcssbs_cf7_submit_hover_bg_color\":\"#000000\",\"bcssbs_cf7_submit_hover_border_color\":\"#000000\",\"bcsffs_cf7_field_border_border\":\"solid\",\"bcsffs_cf7_field_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"meafe-cf7\"},{\"id\":\"f3964d5\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/rishidemos.com\\/restaurant\\/wp-content\\/uploads\\/sites\\/9\\/2021\\/11\\/Group-149.png\",\"id\":1211,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"full\",\"_position\":\"absolute\",\"_offset_orientation_h\":\"end\",\"_offset_x_end\":{\"unit\":\"px\",\"size\":-170,\"sizes\":[]},\"_offset_y\":{\"unit\":\"px\",\"size\":-140,\"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},\"_element_width\":\"auto\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false},{\"id\":\"613435d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"stretch_section\":\"section-stretched\"},\"elements\":[{\"id\":\"33ddbcc4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"36cb0c9e\",\"elType\":\"widget\",\"settings\":{\"address\":\"\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"94748ee\",\"elType\":\"container\",\"settings\":{\"content_width\":\"full\",\"stretch_section\":\"section-stretched\",\"flex_direction\":\"row\",\"flex_align_items\":\"stretch\",\"flex_gap\":{\"size\":10,\"unit\":\"px\",\"column\":\"10\",\"row\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"2e59359\",\"elType\":\"container\",\"settings\":{\"_column_size\":100,\"width\":{\"size\":null,\"unit\":\"%\"},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"content_width\":\"full\"},\"elements\":[{\"id\":\"f11f5e9\",\"elType\":\"widget\",\"settings\":{\"address\":\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\"height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"google_maps\"}],\"isInner\":true}],\"isInner\":false},{\"id\":\"6eb738d7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":1174,\"sizes\":[]},\"structure\":\"20\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"015\",\"bottom\":\"0\",\"left\":\"015\",\"isLinked\":false}},\"elements\":[{\"id\":\"ac9c1d4\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":34.73100000000000164845914696343243122100830078125,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"273d34e0\",\"elType\":\"section\",\"settings\":[],\"elements\":[{\"id\":\"6f3478c1\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"space_between_widgets\":0,\"background_background\":\"classic\",\"border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"margin\":{\"unit\":\"px\",\"top\":\"-70\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"40\",\"bottom\":\"60\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"030\",\"bottom\":\"040\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"020\",\"bottom\":\"059\",\"left\":\"020\",\"isLinked\":false},\"__globals__\":{\"background_color\":\"\"},\"background_color\":\"#202020\"},\"elements\":[{\"id\":\"22e0f4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"Planning To Visit ?\",\"typography_typography\":\"custom\",\"header_size\":\"h4\",\"__globals__\":{\"title_color\":\"globals\\/colors?id=rishi5\"}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1129225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_margin\":{\"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\":2,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"__globals__\":{\"text_color\":\"globals\\/colors?id=rishi6\"}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b2b33f0\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"border_border\":\"solid\",\"border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"button_hover_border_color\":\"globals\\/colors?id=rishi5\"},\"hover_animation\":\"float\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"c5d3e9f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":65.269000000000005456968210637569427490234375,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"60\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"050\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"6aeaaddc\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\"},\"elements\":[{\"id\":\"5f88a502\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":63.71900000000000119371179607696831226348876953125,\"align\":\"space-between\",\"space_between_widgets\":0,\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"1\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#0000001A\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"60\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"border_border\":\"solid\",\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"25\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"__globals__\":{\"border_color\":\"\"},\"_inline_size_tablet\":60},\"elements\":[{\"id\":\"a3141a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Opening Time\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"header_size\":\"h4\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1920d8d1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Working Days\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"5423d8de\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"24cbf783\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"6a82333c\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Saturday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"66b527ed\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7e24e1ed\",\"elType\":\"widget\",\"settings\":{\"style\":\"dotted\",\"text\":\"Divider\",\"color\":\"#00000033\",\"weight\":{\"unit\":\"px\",\"size\":4,\"sizes\":[]},\"gap\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"gap_mobile\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"1be95b9d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Sunday\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"1592217e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>7:00AM - 10:00PM<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Poppins\",\"typography_font_size\":{\"unit\":\"px\",\"size\":18,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"px\",\"size\":34,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_element_width\":\"auto\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":true},{\"id\":\"1d4b5fd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":36,\"space_between_widgets\":0,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"010\",\"bottom\":\"0\",\"left\":\"60\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"_inline_size_tablet\":40},\"elements\":[{\"id\":\"3adc0e61\",\"elType\":\"widget\",\"settings\":{\"title\":\"Get In Touch\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":26,\"sizes\":[]},\"typography_line_height_mobile\":{\"unit\":\"em\",\"size\":1.3000000000000000444089209850062616169452667236328125,\"sizes\":[]},\"typography_letter_spacing_mobile\":{\"unit\":\"px\",\"size\":0.25,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"header_size\":\"h4\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"73c996ad\",\"elType\":\"widget\",\"settings\":{\"editor\":\"\",\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":24,\"sizes\":[]},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"4fcb0414\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>care@healthyfoodrestaurant.in<\\/p>\",\"align\":\"center\",\"typography_typography\":\"custom\",\"_margin\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"align_mobile\":\"left\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"text_color\":\"#3E3E3E\",\"typography_font_size_tablet\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]}},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"314e4e7e\",\"elType\":\"widget\",\"settings\":{\"social_icon_list\":[{\"social_icon\":{\"value\":\"fab fa-facebook\",\"library\":\"fa-brands\"},\"_id\":\"cc328cc\"},{\"social_icon\":{\"value\":\"fab fa-twitter\",\"library\":\"fa-brands\"},\"_id\":\"cc0914c\"},{\"_id\":\"94765cf\",\"social_icon\":{\"value\":\"fab fa-instagram\",\"library\":\"fa-brands\"}},{\"_id\":\"7612178\",\"social_icon\":{\"value\":\"fab fa-youtube\",\"library\":\"fa-brands\"}}],\"icon_color\":\"custom\",\"icon_primary_color\":\"#02010100\",\"icon_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"icon_padding\":{\"unit\":\"em\",\"size\":0.6999999999999999555910790149937383830547332763671875,\"sizes\":[]},\"icon_spacing\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"image_border_border\":\"solid\",\"image_border_width\":{\"unit\":\"px\",\"top\":\"1\",\"right\":\"1\",\"bottom\":\"1\",\"left\":\"1\",\"isLinked\":true},\"image_border_color\":\"#00000026\",\"border_radius\":{\"unit\":\"%\",\"top\":\"50\",\"right\":\"50\",\"bottom\":\"50\",\"left\":\"50\",\"isLinked\":true},\"hover_secondary_color\":\"#FFFFFF\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"icon_secondary_color\":\"#000000\",\"hover_primary_color\":\"#FF785B\",\"hover_border_color\":\"#FF785B\",\"align_mobile\":\"left\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"020\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"row_gap_tablet\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"040\",\"right\":\"0\",\"bottom\":\"010\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"social-icons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false}],\"isInner\":false}]'),(2025,4779,'_elementor_page_assets','a:1:{s:6:\"styles\";a:13:{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\";}}'),(2026,4779,'_elementor_controls_usage','a:14:{s:7:\"heading\";a:3:{s:5:\"count\";i:20;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:4:{s:5:\"title\";i:20;s:5:\"align\";i:16;s:11:\"header_size\";i:11;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:11:{s:21:\"typography_typography\";i:18;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:3;s:22:\"typography_line_height\";i:14;s:27:\"typography_font_size_mobile\";i:10;s:29:\"typography_line_height_mobile\";i:15;s:32:\"typography_letter_spacing_mobile\";i:6;s:22:\"typography_font_family\";i:1;s:25:\"typography_letter_spacing\";i:2;s:11:\"title_color\";i:1;s:27:\"typography_font_size_tablet\";i:1;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:11;s:14:\"_margin_mobile\";i:7;s:15:\"_padding_mobile\";i:8;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:26;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:2:{s:6:\"editor\";i:26;s:17:\"column_gap_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:6:{s:7:\"_margin\";i:17;s:14:\"_margin_mobile\";i:10;s:15:\"_padding_mobile\";i:8;s:14:\"_margin_tablet\";i:1;s:8:\"_padding\";i:1;s:8:\"_z_index\";i:1;}s:17:\"_section_position\";a:1:{s:14:\"_element_width\";i:6;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:13:{s:21:\"typography_typography\";i:25;s:20:\"typography_font_size\";i:15;s:22:\"typography_line_height\";i:24;s:27:\"typography_font_size_mobile\";i:23;s:5:\"align\";i:18;s:29:\"typography_line_height_mobile\";i:13;s:32:\"typography_letter_spacing_mobile\";i:17;s:25:\"typography_letter_spacing\";i:8;s:22:\"typography_font_family\";i:7;s:22:\"typography_font_weight\";i:7;s:27:\"typography_font_size_tablet\";i:8;s:12:\"align_mobile\";i:2;s:10:\"text_color\";i:3;}}}}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:2:{s:4:\"text\";i:4;s:5:\"align\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:9:{s:21:\"typography_typography\";i:4;s:20:\"typography_font_size\";i:2;s:22:\"typography_line_height\";i:4;s:25:\"typography_letter_spacing\";i:3;s:15:\"hover_animation\";i:4;s:29:\"button_background_hover_color\";i:1;s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:27:\"typography_font_size_mobile\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:3;s:8:\"_padding\";i:1;}s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:44;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:5:{s:12:\"_inline_size\";i:44;s:21:\"space_between_widgets\";i:22;s:5:\"align\";i:2;s:16:\"content_position\";i:2;s:19:\"_inline_size_tablet\";i:2;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:3;s:16:\"background_color\";i:1;}s:14:\"section_border\";a:6:{s:26:\"box_shadow_box_shadow_type\";i:1;s:21:\"box_shadow_box_shadow\";i:2;s:13:\"border_radius\";i:1;s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_border\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:13;s:14:\"padding_mobile\";i:22;s:6:\"margin\";i:23;s:7:\"padding\";i:35;s:14:\"padding_tablet\";i:7;s:13:\"margin_tablet\";i:4;}s:15:\"section_effects\";a:2:{s:9:\"animation\";i:10;s:18:\"animation_duration\";i:5;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:33;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:9;}s:14:\"section_layout\";a:8:{s:15:\"stretch_section\";i:10;s:13:\"content_width\";i:12;s:6:\"_title\";i:3;s:16:\"content_position\";i:1;s:6:\"height\";i:2;s:13:\"custom_height\";i:2;s:20:\"custom_height_mobile\";i:1;s:6:\"layout\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:6:{s:13:\"margin_mobile\";i:17;s:14:\"padding_mobile\";i:14;s:7:\"padding\";i:23;s:14:\"padding_tablet\";i:9;s:6:\"margin\";i:22;s:13:\"margin_tablet\";i:9;}s:19:\"_section_responsive\";a:1:{s:20:\"reverse_order_mobile\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:11;s:16:\"background_image\";i:3;s:19:\"background_position\";i:3;s:15:\"background_size\";i:3;s:23:\"background_image_mobile\";i:1;s:16:\"background_color\";i:4;s:17:\"background_repeat\";i:2;}s:14:\"section_border\";a:7:{s:13:\"border_border\";i:3;s:12:\"border_width\";i:3;s:12:\"border_color\";i:3;s:19:\"border_width_mobile\";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:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:2;}}}}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:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:11;s:5:\"align\";i:7;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:19:\"image_border_radius\";i:8;s:5:\"width\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}s:17:\"_section_position\";a:5:{s:9:\"_position\";i:1;s:21:\"_offset_orientation_h\";i:1;s:13:\"_offset_x_end\";i:1;s:9:\"_offset_y\";i:1;s:14:\"_element_width\";i:1;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";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:\"width\";i:1;s:5:\"align\";i:1;s:5:\"style\";i:2;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:5:{s:6:\"weight\";i:3;s:3:\"gap\";i:3;s:10:\"gap_mobile\";i:3;s:10:\"gap_tablet\";i:1;s:5:\"color\";i:2;}}}}s:12:\"social-icons\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_social_icon\";a:3:{s:16:\"social_icon_list\";i:3;s:5:\"align\";i:1;s:12:\"align_mobile\";i:2;}}s:5:\"style\";a:2:{s:20:\"section_social_style\";a:13:{s:10:\"icon_color\";i:3;s:18:\"icon_primary_color\";i:3;s:9:\"icon_size\";i:3;s:12:\"icon_padding\";i:3;s:12:\"icon_spacing\";i:3;s:19:\"image_border_border\";i:3;s:18:\"image_border_width\";i:3;s:18:\"image_border_color\";i:3;s:13:\"border_radius\";i:3;s:20:\"icon_secondary_color\";i:3;s:19:\"icon_padding_mobile\";i:1;s:16:\"icon_size_mobile\";i:1;s:14:\"row_gap_tablet\";i:1;}s:20:\"section_social_hover\";a:3:{s:21:\"hover_secondary_color\";i:3;s:19:\"hover_primary_color\";i:3;s:18:\"hover_border_color\";i:3;}}s:8:\"advanced\";a:1:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:14:\"_margin_mobile\";i:2;s:14:\"_margin_tablet\";i:1;}}}}s:10:\"meafe-tabs\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:35:\"meafe_tabs_content_general_settings\";a:2:{s:20:\"btcgs_tabs_icon_show\";i:1;s:14:\"btcgs_tabs_tab\";i:1;}}s:5:\"style\";a:2:{s:31:\"meafe_tabs_style_title_settings\";a:12:{s:38:\"btsts_tabs_title_typography_typography\";i:1;s:37:\"btsts_tabs_title_typography_font_size\";i:1;s:39:\"btsts_tabs_title_typography_line_height\";i:1;s:42:\"btsts_tabs_title_typography_letter_spacing\";i:1;s:16:\"btsts_tabs_color\";i:1;s:22:\"btsts_tabs_color_hover\";i:1;s:23:\"btsts_tabs_color_active\";i:1;s:18:\"btsts_tabs_padding\";i:1;s:17:\"btsts_tabs_margin\";i:1;s:21:\"btsts_tabs_text_color\";i:1;s:27:\"btsts_tabs_text_color_hover\";i:1;s:28:\"btsts_tabs_text_color_active\";i:1;}s:33:\"meafe_tabs_style_content_settings\";a:2:{s:29:\"btscs_tabs_content_text_color\";i:1;s:40:\"btscs_tabs_content_typography_typography\";i:1;}}}}s:16:\"meafe-price-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:5;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:41:\"meafe_price_menu_content_general_settings\";a:2:{s:23:\"bpmcgs_price_menu_items\";i:2;s:34:\"bpmcgs_price_title_price_connector\";i:2;}}s:5:\"style\";a:6:{s:39:\"meafe_price_menu_style_menu_items_style\";a:2:{s:21:\"bpmsmis_items_spacing\";i:2;s:28:\"bpmsmis_items_spacing_mobile\";i:2;}s:34:\"meafe_price_menu_style_title_style\";a:3:{s:19:\"bpmsts_title_margin\";i:2;s:34:\"bpmsts_title_typography_typography\";i:2;s:33:\"bpmsts_title_typography_font_size\";i:2;}s:34:\"meafe_price_menu_style_price_style\";a:2:{s:34:\"bpmsps_price_typography_typography\";i:2;s:33:\"bpmsps_price_typography_font_size\";i:2;}s:40:\"meafe_price_menu_style_description_style\";a:4:{s:40:\"bpmsds_description_typography_typography\";i:2;s:39:\"bpmsds_description_typography_font_size\";i:2;s:26:\"bpmsds_description_spacing\";i:2;s:24:\"bpmsds_description_color\";i:2;}s:34:\"meafe_price_menu_style_image_style\";a:3:{s:22:\"bpmsis_image_size_size\";i:2;s:34:\"bpmsis_image_size_custom_dimension\";i:2;s:18:\"bpmsis_image_width\";i:2;}s:50:\"meafe_price_menu_style_title_price_connector_style\";a:2:{s:30:\"bpmstpcs_items_divider_borders\";i:2;s:28:\"bpmstpcs_items_divider_color\";i:2;}}}}s:26:\"meafe-testimonial-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:51:\"meafe_testimonial_carousel_content_general_settings\";a:5:{s:27:\"btccgs_testimonial_carousel\";i:1;s:35:\"btccgs_testimonial_carousel_layouts\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_prev_icon\";i:1;s:43:\"btccgs_testimonial_carousel_arrow_next_icon\";i:1;s:46:\"btccgs_testimonial_carousel_show_carousel_loop\";i:1;}}s:5:\"style\";a:3:{s:46:\"meafe_testimonial_carousel_style_general_style\";a:6:{s:32:\"btcsgs_testimonial_title_spacing\";i:1;s:30:\"btcsgs_testimonial_title_color\";i:1;s:32:\"btcsgs_testimonial_content_color\";i:1;s:34:\"btcsgs_testimonial_content_padding\";i:1;s:48:\"btcsgs_testimonial_content_typography_typography\";i:1;s:47:\"btcsgs_testimonial_content_typography_font_size\";i:1;}s:44:\"meafe_testimonial_carousel_style_image_style\";a:2:{s:30:\"btcsis_testimonial_image_width\";i:1;s:31:\"btcsis_testimonial_image_height\";i:1;}s:38:\"meafe_testimonial_style_reviewer_style\";a:3:{s:28:\"btsrs_testimonial_name_color\";i:1;s:30:\"btsrs_testimonial_name_spacing\";i:1;s:29:\"btsrs_testimonial_title_color\";i:1;}}}}s:10:\"meafe-blog\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_blog_content_layout_settings\";a:3:{s:22:\"bbcls_blog_layout_mode\";i:1;s:32:\"bbcls_blog_read_more_button_text\";i:1;s:22:\"bbcls_blog_show_author\";i:1;}}s:5:\"style\";a:2:{s:39:\"meafe_blog_style_color_typography_style\";a:11:{s:23:\"bbscts_blog_title_color\";i:1;s:29:\"bbscts_blog_title_hover_color\";i:1;s:22:\"bbscts_blog_meta_color\";i:1;s:39:\"bbscts_blog_title_typography_typography\";i:1;s:40:\"bbscts_blog_title_typography_font_family\";i:1;s:38:\"bbscts_blog_title_typography_font_size\";i:1;s:40:\"bbscts_blog_title_typography_font_weight\";i:1;s:40:\"bbscts_blog_title_typography_line_height\";i:1;s:43:\"bbscts_blog_title_typography_letter_spacing\";i:1;s:38:\"bbscts_blog_meta_typography_typography\";i:1;s:37:\"bbscts_blog_meta_typography_font_size\";i:1;}s:32:\"meafe_blog_style_read_more_style\";a:4:{s:47:\"bbsrms_blog_read_more_btn_typography_typography\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_family\";i:1;s:46:\"bbsrms_blog_read_more_btn_typography_font_size\";i:1;s:48:\"bbsrms_blog_read_more_btn_typography_font_weight\";i:1;}}}}s:9:\"meafe-cf7\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:6;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:34:\"meafe_cf7_content_general_settings\";a:1:{s:17:\"bccgs_cf7_form_id\";i:1;}}s:5:\"style\";a:2:{s:32:\"meafe_cf7_style_form_field_style\";a:6:{s:22:\"bcsffs_cf7_field_width\";i:1;s:24:\"bcsffs_cf7_field_padding\";i:1;s:25:\"bcsffs_cf7_field_bg_color\";i:1;s:34:\"bcsffs_cf7_field_placeholder_color\";i:1;s:30:\"bcsffs_cf7_field_border_border\";i:1;s:29:\"bcsffs_cf7_field_border_width\";i:1;}s:35:\"meafe_cf7_style_sumbit_button_style\";a:12:{s:39:\"bcssbs_cf7_submit_typography_typography\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_family\";i:1;s:38:\"bcssbs_cf7_submit_typography_font_size\";i:1;s:40:\"bcssbs_cf7_submit_typography_font_weight\";i:1;s:31:\"bcssbs_cf7_submit_border_border\";i:1;s:30:\"bcssbs_cf7_submit_border_width\";i:1;s:30:\"bcssbs_cf7_submit_border_color\";i:1;s:23:\"bcssbs_cf7_submit_color\";i:1;s:26:\"bcssbs_cf7_submit_bg_color\";i:1;s:18:\"submit_hover_color\";i:1;s:32:\"bcssbs_cf7_submit_hover_bg_color\";i:1;s:36:\"bcssbs_cf7_submit_hover_border_color\";i:1;}}}}s:11:\"google_maps\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:1:{s:7:\"content\";a:1:{s:11:\"section_map\";a:1:{s:6:\"height\";i:1;}}}}}'),(2027,4779,'_elementor_pro_version','3.14.1'),(2031,4780,'_edit_lock','1697266498:2'),(2061,4785,'_wp_attached_file','2023/09/cropped-7776956.jpg'),(2062,4785,'_wp_attachment_context','site-icon'),(2063,4785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:27:\"2023/09/cropped-7776956.jpg\";s:8:\"filesize\";i:55908;s:5:\"sizes\";a:17:{s:6:\"medium\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39928;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:31270;}s:19:\"meafe-featured-page\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-500x410.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:53132;}s:21:\"meafe-testimonial-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-272x316.jpg\";s:5:\"width\";i:272;s:6:\"height\";i:316;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:40504;}s:14:\"meafe-blog-one\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-370x247.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:247;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42771;}s:14:\"meafe-blog-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-197x278.jpg\";s:5:\"width\";i:197;s:6:\"height\";i:278;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37424;}s:18:\"meafe-category-tab\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-355x355.jpg\";s:5:\"width\";i:355;s:6:\"height\";i:355;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:43112;}s:19:\"meafe-category-grid\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-370x370.jpg\";s:5:\"width\";i:370;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:44346;}s:23:\"meafe-category-grid-two\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-270x180.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:37252;}s:25:\"meafe-category-grid-three\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-512x320.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:320;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:52558;}s:29:\"meafe-category-grid-lay-three\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-170x170.jpg\";s:5:\"width\";i:170;s:6:\"height\";i:170;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32160;}s:28:\"meafe-post-modules-small-img\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:39928;}s:15:\"rishi-blog-grid\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-360x240.jpg\";s:5:\"width\";i:360;s:6:\"height\";i:240;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:42379;}s:13:\"site_icon-270\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-270x270.jpg\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:38156;}s:13:\"site_icon-192\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-192x192.jpg\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:33434;}s:13:\"site_icon-180\";a:5:{s:4:\"file\";s:27:\"cropped-7776956-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:32783;}s:12:\"site_icon-32\";a:5:{s:4:\"file\";s:25:\"cropped-7776956-32x32.jpg\";s:5:\"width\";i:32;s:6:\"height\";i:32;s:9:\"mime-type\";s:10:\"image/jpeg\";s:8:\"filesize\";i:26526;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2072,4787,'_edit_lock','1697267307:2'),(2075,4785,'_oembed_1ac3ba6cfed5a2c175af1419b8433b97','{{unknown}}');
/*!40000 ALTER TABLE `staging_ajj_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_posts`
--

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

--
-- Dumping data for table `staging_ajj_posts`
--

LOCK TABLES `staging_ajj_posts` WRITE;
/*!40000 ALTER TABLE `staging_ajj_posts` DISABLE KEYS */;
INSERT INTO `staging_ajj_posts` VALUES (1,1,'2023-09-07 01:48:25','2023-09-07 01:48:25','<!-- wp:paragraph -->\n<p>Welcome to WordPress. This is your first post. Edit or delete it, then start writing!</p>\n<!-- /wp:paragraph -->','Hello world!','','publish','open','open','','hello-world','','','2023-09-07 01:48:25','2023-09-07 01:48:25','',0,'http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call]/?p=1',0,'post','',1),(3,1,'2023-09-07 01:48:25','2023-09-07 01:48:25','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Our website address is: http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call].</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Comments</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor&#8217;s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Media</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Cookies</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select &quot;Remember Me&quot;, your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Embedded content from other websites</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you request a password reset, your IP address will be included in the reset email.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where your data is sent</h2><!-- /wp:heading --><!-- wp:paragraph --><p><strong class=\"privacy-policy-tutorial\">Suggested text: </strong>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2023-09-07 01:48:25','2023-09-07 01:48:25','',0,'http://sh036/cgi/addon_GT.cgi?s=GT::WP::Install::Cpanel+%28websitex%29+-+10.0.87.65+[Wordpress%3b+/var/hp/common/lib/Wordpress.pm%3b+534%3b+Hosting::gap_call]/?page_id=3',0,'page','',0),(4,0,'2023-09-07 01:48:44','2023-09-07 01:48:44','<!-- wp:page-list /-->','Navigation','','publish','closed','closed','','navigation','','','2023-09-07 01:48:44','2023-09-07 01:48:44','',0,'https://healthyfoodrestaurant.in/staging/3871/navigation/',0,'wp_navigation','',0),(5,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','Repeat-Grid-1-1_image','','inherit','open','closed','','repeat-grid-1-1_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Repeat-Grid-1-1.png',0,'attachment','image/png',0),(7,1,'2023-09-07 02:09:38','2023-09-07 02:09:38','','rishi-restaurant.xml','','inherit','open','closed','','rishi-restaurant-xml','','','2023-09-07 02:09:38','2023-09-07 02:09:38','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/rishi-restaurant.xml',0,'attachment','text/xml',0),(8,1,'2021-02-17 11:45:29','2021-02-17 11:45:29','','Page-1_image','','inherit','open','closed','','page-1_image','','','2021-02-17 11:45:29','2021-02-17 11:45:29','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1.png',0,'attachment','image/png',0),(9,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','amirali-mirhashemian-4gmBIFraSuE-unsplash_image','','inherit','open','closed','','amirali-mirhashemian-4gmbifrasue-unsplash_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash.png',0,'attachment','image/png',0),(10,1,'2021-02-17 11:45:30','2021-02-17 11:45:30','','bg_image','','inherit','open','closed','','bg_image','','','2021-02-17 11:45:30','2021-02-17 11:45:30','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/bg.png',0,'attachment','image/png',0),(11,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','cayla1-w6ftFbPCs9I-unsplash_image','','inherit','open','closed','','cayla1-w6ftfbpcs9i-unsplash_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/cayla1-w6ftFbPCs9I-unsplash.png',0,'attachment','image/png',0),(12,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','cheesecake-stuffed-strawberries-500x500-1_image','','inherit','open','closed','','cheesecake-stuffed-strawberries-500x500-1_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/cheesecake-stuffed-strawberries-500x500-1.png',0,'attachment','image/png',0),(13,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','chef_image','','inherit','open','closed','','chef_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/chef.png',0,'attachment','image/png',0),(14,1,'2021-02-17 11:45:37','2021-02-17 11:45:37','','febrian-zakaria-SiQgni-cqFg-unsplash_image','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash_image','','','2021-02-17 11:45:37','2021-02-17 11:45:37','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash.png',0,'attachment','image/png',0),(15,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','humphrey-muleba-YpPeBSqiQ-0-unsplash_image','','inherit','open','closed','','humphrey-muleba-yppebsqiq-0-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash.png',0,'attachment','image/png',0),(16,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','jason-leung-AUAuEgUxg5Q-unsplash_image','','inherit','open','closed','','jason-leung-auaueguxg5q-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/jason-leung-AUAuEgUxg5Q-unsplash.png',0,'attachment','image/png',0),(17,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','jennifer-burk-gwBcamFtPr4-unsplash_image','','inherit','open','closed','','jennifer-burk-gwbcamftpr4-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/jennifer-burk-gwBcamFtPr4-unsplash.png',0,'attachment','image/png',0),(18,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','leaf_image','','inherit','open','closed','','leaf_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf.png',0,'attachment','image/png',0),(19,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash_image','','inherit','open','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png',0,'attachment','image/png',0),(20,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash_image','','inherit','open','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png',0,'attachment','image/png',0),(21,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','lunch_image','','inherit','open','closed','','lunch_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/lunch.png',0,'attachment','image/png',0),(22,1,'2021-02-17 11:45:39','2021-02-17 11:45:39','','make-a-reservation_image','','inherit','open','closed','','make-a-reservation_image','','','2021-02-17 11:45:39','2021-02-17 11:45:39','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/make-a-reservation.png',0,'attachment','image/png',0),(23,1,'2021-02-17 11:45:57','2021-02-17 11:45:57','','malin-strandvall-qw1hNqrMNwI-unsplash_image','','inherit','open','closed','','malin-strandvall-qw1hnqrmnwi-unsplash_image','','','2021-02-17 11:45:57','2021-02-17 11:45:57','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/malin-strandvall-qw1hNqrMNwI-unsplash.png',0,'attachment','image/png',0),(24,1,'2021-02-17 11:45:57','2021-02-17 11:45:57','','offer_image','','inherit','open','closed','','offer_image','','','2021-02-17 11:45:57','2021-02-17 11:45:57','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer.png',0,'attachment','image/png',0),(25,1,'2021-02-17 11:45:59','2021-02-17 11:45:59','','refresh_image','','inherit','open','closed','','refresh_image','','','2021-02-17 11:45:59','2021-02-17 11:45:59','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/refresh.png',0,'attachment','image/png',0),(26,1,'2021-02-17 11:45:59','2021-02-17 11:45:59','','screenshot-2020.08.06-07_47_52_image','','inherit','open','closed','','screenshot-2020-08-06-07_47_52_image','','','2021-02-17 11:45:59','2021-02-17 11:45:59','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52.png',0,'attachment','image/png',0),(27,1,'2021-02-17 11:46:00','2021-02-17 11:46:00','','screenshot-2020.08.06-07_48_28_image','','inherit','open','closed','','screenshot-2020-08-06-07_48_28_image','','','2021-02-17 11:46:00','2021-02-17 11:46:00','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28.png',0,'attachment','image/png',0),(28,1,'2021-02-17 11:46:02','2021-02-17 11:46:02','','sign_image','','inherit','open','closed','','sign_image','','','2021-02-17 11:46:02','2021-02-17 11:46:02','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/sign.png',0,'attachment','image/png',0),(29,1,'2021-02-17 11:46:02','2021-02-17 11:46:02','','testimonial-bg_image','','inherit','open','closed','','testimonial-bg_image','','','2021-02-17 11:46:02','2021-02-17 11:46:02','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/testimonial-bg.png',0,'attachment','image/png',0),(30,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','tim-chow-MhpxHv0FKtE-unsplash_image','','inherit','open','closed','','tim-chow-mhpxhv0fkte-unsplash_image','','','2021-02-17 11:46:14','2021-02-17 11:46:14','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/tim-chow-MhpxHv0FKtE-unsplash.png',0,'attachment','image/png',0),(31,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','wedding-dinner_image','','inherit','open','closed','','wedding-dinner_image','','','2021-02-17 11:46:14','2021-02-17 11:46:14','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png',0,'attachment','image/png',0),(32,1,'2021-02-17 11:46:15','2021-02-17 11:46:15','','bg.png','','inherit','open','closed','','bg-png','','','2021-02-17 11:46:15','2021-02-17 11:46:15','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/bg-1.png',0,'attachment','image/png',0),(33,1,'2021-02-17 11:46:21','2021-02-17 11:46:21','','leaf.png','','inherit','open','closed','','leaf-png','','','2021-02-17 11:46:21','2021-02-17 11:46:21','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png',0,'attachment','image/png',0),(34,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','refresh.png','','inherit','open','closed','','refresh-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/refresh-1.png',0,'attachment','image/png',0),(35,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','chef.png','','inherit','open','closed','','chef-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/chef-1.png',0,'attachment','image/png',0),(36,1,'2021-02-17 11:46:22','2021-02-17 11:46:22','','screenshot-2020.08.06-07_47_52.png','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-png','','','2021-02-17 11:46:22','2021-02-17 11:46:22','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1.png',0,'attachment','image/png',0),(37,1,'2021-02-17 11:46:23','2021-02-17 11:46:23','','screenshot-2020.08.06-07_48_28.png','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-png','','','2021-02-17 11:46:23','2021-02-17 11:46:23','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png',0,'attachment','image/png',0),(38,1,'2021-02-17 11:46:25','2021-02-17 11:46:25','','offer.png','','inherit','open','closed','','offer-png','','','2021-02-17 11:46:25','2021-02-17 11:46:25','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png',0,'attachment','image/png',0),(39,1,'2021-02-17 11:46:27','2021-02-17 11:46:27','','Page-1.png','','inherit','open','closed','','page-1-png','','','2021-02-17 11:46:27','2021-02-17 11:46:27','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png',0,'attachment','image/png',0),(40,1,'2021-02-17 11:46:27','2021-02-17 11:46:27','','lunch.png','','inherit','open','closed','','lunch-png','','','2021-02-17 11:46:27','2021-02-17 11:46:27','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/lunch-1.png',0,'attachment','image/png',0),(41,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','wedding-dinner.png','','inherit','open','closed','','wedding-dinner-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner-1.png',0,'attachment','image/png',0),(42,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','cayla1-w6ftFbPCs9I-unsplash.png','','inherit','open','closed','','cayla1-w6ftfbpcs9i-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/cayla1-w6ftFbPCs9I-unsplash-1.png',0,'attachment','image/png',0),(43,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','Repeat-Grid-1-1.png','','inherit','open','closed','','repeat-grid-1-1-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Repeat-Grid-1-1-1.png',0,'attachment','image/png',0),(44,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','jason-leung-AUAuEgUxg5Q-unsplash.png','','inherit','open','closed','','jason-leung-auaueguxg5q-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/jason-leung-AUAuEgUxg5Q-unsplash-1.png',0,'attachment','image/png',0),(45,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','malin-strandvall-qw1hNqrMNwI-unsplash.png','','inherit','open','closed','','malin-strandvall-qw1hnqrmnwi-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/malin-strandvall-qw1hNqrMNwI-unsplash-1.png',0,'attachment','image/png',0),(46,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','humphrey-muleba-YpPeBSqiQ-0-unsplash.png','','inherit','open','closed','','humphrey-muleba-yppebsqiq-0-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/humphrey-muleba-YpPeBSqiQ-0-unsplash-1.png',0,'attachment','image/png',0),(47,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.png','','inherit','open','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash-1.png',0,'attachment','image/png',0),(48,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.png','','inherit','open','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash-1.png',0,'attachment','image/png',0),(49,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','cheesecake-stuffed-strawberries-500x500-1.png','','inherit','open','closed','','cheesecake-stuffed-strawberries-500x500-1-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/cheesecake-stuffed-strawberries-500x500-1-1.png',0,'attachment','image/png',0),(50,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','jennifer-burk-gwBcamFtPr4-unsplash.png','','inherit','open','closed','','jennifer-burk-gwbcamftpr4-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/jennifer-burk-gwBcamFtPr4-unsplash-1.png',0,'attachment','image/png',0),(51,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','amirali-mirhashemian-4gmBIFraSuE-unsplash.png','','inherit','open','closed','','amirali-mirhashemian-4gmbifrasue-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png',0,'attachment','image/png',0),(52,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','tim-chow-MhpxHv0FKtE-unsplash.png','','inherit','open','closed','','tim-chow-mhpxhv0fkte-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/tim-chow-MhpxHv0FKtE-unsplash-1.png',0,'attachment','image/png',0),(53,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','sign.png','','inherit','open','closed','','sign-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/sign-1.png',0,'attachment','image/png',0),(54,1,'2021-02-17 11:46:28','2021-02-17 11:46:28','','febrian-zakaria-SiQgni-cqFg-unsplash.png','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-png','','','2021-02-17 11:46:28','2021-02-17 11:46:28','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-1.png',0,'attachment','image/png',0),(57,1,'2021-02-17 11:46:32','2021-02-17 11:46:32','','testimonial-bg.png','','inherit','open','closed','','testimonial-bg-png','','','2021-02-17 11:46:32','2021-02-17 11:46:32','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/testimonial-bg-1.png',0,'attachment','image/png',0),(78,1,'2021-02-17 11:47:01','2021-02-17 11:47:01','','testimonial-bg.png','','inherit','open','closed','','testimonial-bg-png-2','','','2021-02-17 11:47:01','2021-02-17 11:47:01','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/testimonial-bg-1-1.png',0,'attachment','image/png',0),(79,1,'2021-02-17 11:47:13','2021-02-17 11:47:13','','make-a-reservation.png','','inherit','open','closed','','make-a-reservation-png','','','2021-02-17 11:47:13','2021-02-17 11:47:13','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/make-a-reservation-1.png',0,'attachment','image/png',0),(85,1,'2021-02-23 02:43:48','2021-02-23 02:43:48','','rishi-live-restaurant-home','','publish','closed','closed','','rishi-live-restaurant-home','','','2021-02-23 02:43:48','2021-02-23 02:43:48','',0,'https://healthyfoodrestaurant.in/staging/3871/?elementor_library=rishi-live-restaurant-home',0,'elementor_library','',0),(87,1,'2021-02-23 02:44:17','2021-02-23 02:44:17','','about-bg_image','','inherit','open','closed','','about-bg_image','','','2021-02-23 02:44:17','2021-02-23 02:44:17','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/about-bg.png',0,'attachment','image/png',0),(88,1,'2021-02-23 02:44:23','2021-02-23 02:44:23','','brooke-cagle-8jp-6SjVibM-unsplash-1_image','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-1_image','','','2021-02-23 02:44:23','2021-02-23 02:44:23','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1.png',0,'attachment','image/png',0),(89,1,'2021-02-23 02:44:26','2021-02-23 02:44:26','','brooke-cagle-8jp-6SjVibM-unsplash_image','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash_image','','','2021-02-23 02:44:26','2021-02-23 02:44:26','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash.png',0,'attachment','image/png',0),(90,1,'2021-02-23 02:44:27','2021-02-23 02:44:27','','elevate-iv6yNy7oBqQ-unsplash-1_image','','inherit','open','closed','','elevate-iv6yny7obqq-unsplash-1_image','','','2021-02-23 02:44:27','2021-02-23 02:44:27','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/elevate-iv6yNy7oBqQ-unsplash-1.png',0,'attachment','image/png',0),(91,1,'2021-02-23 02:44:29','2021-02-23 02:44:29','','febrian-zakaria-SiQgni-cqFg-unsplash-2_image','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-2_image','','','2021-02-23 02:44:29','2021-02-23 02:44:29','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2.png',0,'attachment','image/png',0),(92,1,'2021-02-23 02:44:31','2021-02-23 02:44:31','','petr-sevcovic-e5Q5vWO55uU-unsplash-1_image','','inherit','open','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1_image','','','2021-02-23 02:44:31','2021-02-23 02:44:31','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1.png',0,'attachment','image/png',0),(93,1,'2021-02-23 02:44:32','2021-02-23 02:44:32','','screenshot-2020.08.06-07_47_52-1_image','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-1_image','','','2021-02-23 02:44:32','2021-02-23 02:44:32','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1-1.png',0,'attachment','image/png',0),(94,1,'2021-02-23 02:44:33','2021-02-23 02:44:33','','screenshot-2020.08.06-07_48_28-1_image','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-1_image','','','2021-02-23 02:44:33','2021-02-23 02:44:33','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1-1.png',0,'attachment','image/png',0),(95,1,'2021-02-23 02:44:35','2021-02-23 02:44:35','','about-bg.png','','inherit','open','closed','','about-bg-png','','','2021-02-23 02:44:35','2021-02-23 02:44:35','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/about-bg-1.png',0,'attachment','image/png',0),(96,1,'2021-02-23 02:44:43','2021-02-23 02:44:43','','brooke-cagle-8jp-6SjVibM-unsplash.png','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-png','','','2021-02-23 02:44:43','2021-02-23 02:44:43','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-2.png',0,'attachment','image/png',0),(97,1,'2021-02-23 02:44:45','2021-02-23 02:44:45','','febrian-zakaria-SiQgni-cqFg-unsplash-2.png','','inherit','open','closed','','febrian-zakaria-siqgni-cqfg-unsplash-2-png','','','2021-02-23 02:44:45','2021-02-23 02:44:45','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/febrian-zakaria-SiQgni-cqFg-unsplash-2-1.png',0,'attachment','image/png',0),(98,1,'2021-02-23 02:44:47','2021-02-23 02:44:47','','elevate-iv6yNy7oBqQ-unsplash-1.png','','inherit','open','closed','','elevate-iv6yny7obqq-unsplash-1-png','','','2021-02-23 02:44:47','2021-02-23 02:44:47','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/elevate-iv6yNy7oBqQ-unsplash-1-1.png',0,'attachment','image/png',0),(99,1,'2021-02-23 02:44:49','2021-02-23 02:44:49','','petr-sevcovic-e5Q5vWO55uU-unsplash-1.png','','inherit','open','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1-png','','','2021-02-23 02:44:49','2021-02-23 02:44:49','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/petr-sevcovic-e5Q5vWO55uU-unsplash-1-1.png',0,'attachment','image/png',0),(100,1,'2021-02-23 02:44:50','2021-02-23 02:44:50','','screenshot-2020.08.06-07_47_52-1.png','','inherit','open','closed','','screenshot-2020-08-06-07_47_52-1-png','','','2021-02-23 02:44:50','2021-02-23 02:44:50','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_47_52-1-2.png',0,'attachment','image/png',0),(101,1,'2021-02-23 02:44:51','2021-02-23 02:44:51','','brooke-cagle-8jp-6SjVibM-unsplash-1.png','','inherit','open','closed','','brooke-cagle-8jp-6sjvibm-unsplash-1-png','','','2021-02-23 02:44:51','2021-02-23 02:44:51','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/brooke-cagle-8jp-6SjVibM-unsplash-1-1.png',0,'attachment','image/png',0),(102,1,'2021-02-23 02:44:53','2021-02-23 02:44:53','','screenshot-2020.08.06-07_48_28-1.png','','inherit','open','closed','','screenshot-2020-08-06-07_48_28-1-png','','','2021-02-23 02:44:53','2021-02-23 02:44:53','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1-2.png',0,'attachment','image/png',0),(103,1,'2021-02-23 02:44:54','2021-02-23 02:44:54','','rishi-live-restaurant-about','','publish','closed','closed','','rishi-live-restaurant-about','','','2021-02-23 02:44:54','2021-02-23 02:44:54','',0,'https://healthyfoodrestaurant.in/staging/3871/?elementor_library=rishi-live-restaurant-about',0,'elementor_library','',0),(106,1,'2021-02-23 03:07:30','2021-02-23 03:07:30','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','publish','closed','closed','','home','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',0,'https://healthyfoodrestaurant.in/staging/3871/home/',0,'page','',0),(115,1,'2021-02-23 03:14:08','2021-02-23 03:14:08','','About','','publish','closed','closed','','about','','','2021-02-23 03:14:08','2021-02-23 03:14:08','',0,'https://healthyfoodrestaurant.in/staging/3871/about/',0,'page','',0),(120,1,'2021-11-22 08:13:24','2021-02-23 04:08:07',' ','','','publish','closed','closed','','120','','','2021-11-22 08:13:24','2021-02-23 04:08:07','',0,'https://healthyfoodrestaurant.in/staging/3871/120/',1,'nav_menu_item','',0),(121,1,'2021-11-22 08:13:24','2021-02-23 04:08:07',' ','','','publish','closed','closed','','121','','','2021-11-22 08:13:24','2021-02-23 04:08:07','',0,'https://healthyfoodrestaurant.in/staging/3871/121/',2,'nav_menu_item','',0),(134,1,'2021-03-09 06:00:30','2021-03-09 06:00:30','','alex-munsell-auIbTAcSH6E-unsplash','','inherit','open','closed','','alex-munsell-auibtacsh6e-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/03/alex-munsell-auIbTAcSH6E-unsplash.jpg',0,'attachment','image/jpeg',0),(296,1,'2021-03-09 08:25:34','2021-03-09 08:25:34','','4817','','inherit','open','closed','','4817','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/03/4817.jpg',0,'attachment','image/jpeg',0),(564,1,'2021-08-23 04:19:18','2021-08-23 04:19:18','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2021-08-23 04:19:18','2021-08-23 04:19:18','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/08/woocommerce-placeholder.png',0,'attachment','image/png',0),(608,1,'2021-11-18 17:23:59','2021-11-18 17:23:59','','bg','','inherit','closed','closed','','bg','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/bg.jpg',0,'attachment','image/jpeg',0),(749,1,'2021-11-19 03:29:45','2021-11-19 03:29:45','','Menu','','publish','closed','closed','','menu','','','2021-11-19 03:29:45','2021-11-19 03:29:45','',0,'https://healthyfoodrestaurant.in/staging/3871/menu/',0,'page','',0),(751,1,'2021-11-19 03:30:51','2021-11-19 03:30:51','','Testimonials','','publish','closed','closed','','testimonials','','','2021-11-19 03:30:51','2021-11-19 03:30:51','',0,'https://healthyfoodrestaurant.in/staging/3871/testimonials/',0,'page','',0),(753,1,'2021-11-19 03:31:41','2021-11-19 03:31:41','','Contact','','publish','closed','closed','','contact','','','2021-11-19 03:31:41','2021-11-19 03:31:41','',0,'https://healthyfoodrestaurant.in/staging/3871/contact/',0,'page','',0),(755,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','755','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/staging/3871/755/',7,'nav_menu_item','',0),(756,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','756','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/staging/3871/756/',5,'nav_menu_item','',0),(757,1,'2021-11-22 08:13:24','2021-11-19 03:33:42',' ','','','publish','closed','closed','','757','','','2021-11-22 08:13:24','2021-11-19 03:33:42','',0,'https://healthyfoodrestaurant.in/staging/3871/757/',4,'nav_menu_item','',0),(762,1,'2021-11-19 03:39:15','2021-11-19 03:39:15','','logo','','inherit','closed','closed','','logo','','','2021-11-19 03:39:15','2021-11-19 03:39:15','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo.jpg',0,'attachment','image/jpeg',0),(764,1,'2021-11-19 03:40:07','2021-11-19 03:40:07','','logo','','inherit','closed','closed','','logo-2','','','2021-11-19 03:40:07','2021-11-19 03:40:07','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo.png',0,'attachment','image/png',0),(767,1,'2021-11-19 03:50:34','2021-11-19 03:50:34','','facebook-logo','','inherit','closed','closed','','facebook-logo','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/facebook-logo.svg',0,'attachment','image/svg+xml',0),(768,1,'2021-11-19 03:51:04','2021-11-19 03:51:04','','twitter','','inherit','closed','closed','','twitter','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/twitter.svg',0,'attachment','image/svg+xml',0),(769,1,'2021-11-19 03:51:21','2021-11-19 03:51:21','','instagram','','inherit','closed','closed','','instagram','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/instagram.svg',0,'attachment','image/svg+xml',0),(770,1,'2021-11-19 03:51:43','2021-11-19 03:51:43','','linkedin','','inherit','closed','closed','','linkedin','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/linkedin.svg',0,'attachment','image/svg+xml',0),(829,1,'2021-11-19 06:18:43','2021-11-19 06:18:43','','nikldn-HzVHlwvQlyw-unsplash','','inherit','closed','closed','','nikldn-hzvhlwvqlyw-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/nikldn-HzVHlwvQlyw-unsplash.jpg',0,'attachment','image/jpeg',0),(837,1,'2021-11-19 06:45:21','2021-11-19 06:45:21','','victoria-shes-kKULRLHdtLo-unsplash-13','','inherit','closed','closed','','victoria-shes-kkulrlhdtlo-unsplash-13','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/victoria-shes-kKULRLHdtLo-unsplash-13.jpg',0,'attachment','image/jpeg',0),(839,1,'2021-11-19 07:01:46','2021-11-19 07:01:46','','victoria-shes-kKULRLHdtLo-unsplash-3','','inherit','closed','closed','','victoria-shes-kkulrlhdtlo-unsplash-3','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/victoria-shes-kKULRLHdtLo-unsplash-3.jpg',0,'attachment','image/jpeg',0),(840,1,'2021-11-19 07:15:53','2021-11-19 07:15:53','','jordi-pujadas-MHzYnDM34IQ-unsplash','','inherit','closed','closed','','jordi-pujadas-mhzyndm34iq-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash.jpg',0,'attachment','image/jpeg',0),(841,1,'2021-11-19 07:16:32','2021-11-19 07:16:32','','jordi-pujadas-MHzYnDM34IQ-unsplash (1)','','inherit','closed','closed','','jordi-pujadas-mhzyndm34iq-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg',0,'attachment','image/jpeg',0),(856,1,'2021-11-19 07:41:30','2021-11-19 07:41:30','','brooke-lark-oaz0raysASk-unsplash (1)','','inherit','closed','closed','','brooke-lark-oaz0raysask-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg',0,'attachment','image/jpeg',0),(860,1,'2021-11-19 07:43:33','2021-11-19 07:43:33','','stil-u2Lp8tXIcjw-unsplash (1)','','inherit','closed','closed','','stil-u2lp8txicjw-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg',0,'attachment','image/jpeg',0),(864,1,'2021-11-19 07:46:09','2021-11-19 07:46:09','','casey-lee-awj7sRviVXo-unsplash (1)','','inherit','closed','closed','','casey-lee-awj7srvivxo-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg',0,'attachment','image/jpeg',0),(868,1,'2021-11-19 07:50:04','2021-11-19 07:50:04','','joseph-gonzalez-fdlZBWIP0aM-unsplash (1)','','inherit','closed','closed','','joseph-gonzalez-fdlzbwip0am-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg',0,'attachment','image/jpeg',0),(1029,1,'2021-11-19 10:00:54','2021-11-19 10:00:54','','febrian-zakaria-SiQgni-cqFg-unsplash','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg',0,'attachment','image/jpeg',0),(1073,1,'2021-11-22 04:23:22','2021-11-22 04:23:22','','brooke-lark-nBtmglfY0HU-unsplash','','inherit','closed','closed','','brooke-lark-nbtmglfy0hu-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/brooke-lark-nBtmglfY0HU-unsplash.jpg',0,'attachment','image/jpeg',0),(1107,1,'2021-11-22 04:36:20','2021-11-22 04:36:20','','alexandra-lammerink-1','','inherit','closed','closed','','alexandra-lammerink-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/alexandra-lammerink-1.jpg',0,'attachment','image/jpeg',0),(1109,1,'2021-11-22 04:38:53','2021-11-22 04:38:53','','screenshot--22','','inherit','closed','closed','','screenshot-22','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22.jpg',0,'attachment','image/jpeg',0),(1110,1,'2021-11-22 04:39:38','2021-11-22 04:39:38','','screenshot--20','','inherit','closed','closed','','screenshot-20','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20.jpg',0,'attachment','image/jpeg',0),(1117,1,'2021-11-22 04:42:49','2021-11-22 04:42:49','','screenshot--4','','inherit','closed','closed','','screenshot-4','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4.jpg',0,'attachment','image/jpeg',0),(1172,1,'2021-11-22 05:58:22','2021-11-22 05:58:22','[text* Your-full-name placeholder \"Full Name\"]\r\n\r\n[date* Date placeholder \"03/08/2020\"]\r\n\r\n[number* NumberofSeats placeholder \"Number of Seats\"]\r\n\r\n[number* your-number placeholder \"Phone Number\"]\r\n\r\n[email* your-email placeholder \"Email Address\"]\r\n\r\n[submit \"Make a Reservation\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','Reservation form','','publish','closed','closed','','reservation-form','','','2021-11-22 05:58:22','2021-11-22 05:58:22','',0,'https://healthyfoodrestaurant.in/staging/3871/?post_type=wpcf7_contact_form&p=1172',0,'wpcf7_contact_form','',0),(1210,1,'2021-11-22 06:12:28','2021-11-22 06:12:28','','Path 24976','','inherit','closed','closed','','path-24976','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Path-24976.png',0,'attachment','image/png',0),(1211,1,'2021-11-22 06:13:26','2021-11-22 06:13:26','','Group 149','','inherit','closed','closed','','group-149','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png',0,'attachment','image/png',0),(1561,1,'2021-11-22 08:12:43','2021-11-22 08:12:43','','Blog','','draft','closed','closed','','blog','','','2023-09-07 13:48:03','2023-09-07 13:48:03','',0,'https://healthyfoodrestaurant.in/staging/3871/blog/',0,'page','',0),(1794,1,'2021-07-20 06:37:46','2021-07-20 06:37:46','<!-- wp:paragraph -->\n<p>You\'ve got your announcement in mind, and now it\'s time to get it down in words to share with you…</p>\n<!-- /wp:paragraph -->\n\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<p>Enabling Online Travel Booking and Reservations</p>\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<blockquote class=\"wp-block-quote is-style-default\">\n<p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p>\n<p><cite><strong>Steve Doe – </strong>Partner</cite></p>\n</blockquote>\n<hr />\n<p>Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<h2>H2:Focus On How You Want to Be</h2>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<h3>H3: Construct a Narrative</h3>\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<h4>H4: Tap Into Your Imagination</h4>\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<h5>H5: Embrace Not Knowing</h5>\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<h6>H6: Remember You Will Survive</h6>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"> </div>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th>Position</th>\n<th>Office</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Erica Romaguera</td>\n<td>Coach</td>\n<td>Audi</td>\n</tr>\n<tr>\n<td>Caleigh Jerde</td>\n<td>Lawyer</td>\n<td>Pizza Hut</td>\n</tr>\n<tr>\n<td>Lucas Schultz</td>\n<td>Librarian</td>\n<td>Burberry</td>\n</tr>\n<tr>\n<td>Carole Marvin</td>\n<td>Educator</td>\n<td>Starbucks</td>\n</tr>\n<tr>\n<td>Woodrow Nikolaus</td>\n<td>Massage Therapist</td>\n<td>Jack Daniel’s</td>\n</tr>\n</tbody>\n</table>\n</figure>','Cooking as a whole package item like it did','','publish','closed','closed','','cooking-as-a-whole-package-item-like-it-did-2','','','2021-07-20 06:37:46','2021-07-20 06:37:46','',0,'https://healthyfoodrestaurant.in/staging/3871/cooking-as-a-whole-package-item-like-it-did-2/',0,'post','',0),(1795,1,'2021-07-22 06:34:43','2021-07-22 06:34:43','<!-- wp:paragraph -->\n<p>You\'ve got your announcement in mind, and now it\'s time to get it down in words to share with you…</p>\n<!-- /wp:paragraph -->\n\n<p>Eventually, you must also offer them attractive and competitive tourpackages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<figure class=\"wp-block-image size-full is-resized\"></figure>\n<p>Enabling Online Travel Booking and Reservations</p>\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<blockquote class=\"wp-block-quote is-style-default\">\n<p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p>\n<p><cite><strong>Steve Doe – </strong>Partner</cite></p>\n</blockquote>\n<hr />\n<p>Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<h2>H2:Focus On How You Want to Be</h2>\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<h3>H3: Construct a Narrative</h3>\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<h4>H4: Tap Into Your Imagination</h4>\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<h5>H5: Embrace Not Knowing</h5>\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<h6>H6: Remember You Will Survive</h6>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"> </div>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<h5>Displaying Company Information</h5>\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<ul>\n<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<figure class=\"wp-block-table is-style-stripes\">\n<table>\n<thead>\n<tr>\n<th><strong>Name</strong></th>\n<th>Position</th>\n<th>Office</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Erica Romaguera</td>\n<td>Coach</td>\n<td>Audi</td>\n</tr>\n<tr>\n<td>Caleigh Jerde</td>\n<td>Lawyer</td>\n<td>Pizza Hut</td>\n</tr>\n<tr>\n<td>Lucas Schultz</td>\n<td>Librarian</td>\n<td>Burberry</td>\n</tr>\n<tr>\n<td>Carole Marvin</td>\n<td>Educator</td>\n<td>Starbucks</td>\n</tr>\n<tr>\n<td>Woodrow Nikolaus</td>\n<td>Massage Therapist</td>\n<td>Jack Daniel’s</td>\n</tr>\n</tbody>\n</table>\n</figure>','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here-3','','','2021-07-22 06:34:43','2021-07-22 06:34:43','',0,'https://healthyfoodrestaurant.in/staging/3871/interesting-ingredients-can-come-into-play-here-3/',0,'post','',0),(3041,1,'2021-07-26 21:35:08','2021-07-26 21:35:08','Our financial assistance boosts you to grow relations and loyalty between employee and market wherever you need anytime.\n\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here-2','','','2021-07-26 21:35:08','2021-07-26 21:35:08','',0,'https://healthyfoodrestaurant.in/staging/3871/interesting-ingredients-can-come-into-play-here-2/',0,'post','',0),(3046,1,'2021-07-26 22:45:35','2021-07-26 22:45:35','Rishi employee help you to take action for best strategy since it’s important for a company.If you find better idea it’s important for a company to take actions immediate otherwise companies growth will limited.\n\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','Cooking as a whole package item like it did','','publish','closed','closed','','cooking-as-a-whole-package-item-like-it-did','','','2021-07-26 22:45:35','2021-07-26 22:45:35','',0,'https://healthyfoodrestaurant.in/staging/3871/cooking-as-a-whole-package-item-like-it-did/',0,'post','',0),(3049,1,'2021-07-26 14:51:39','2021-07-26 14:51:39','<h5>Our financial assistance boosts you to grow relations and loyalty between employee and market wherever you need anytime.</h5>\nSo without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.\n<figure class=\"wp-block-image alignwide size-full\"><img class=\"wp-image-1091\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" width=\"700\" height=\"394\"></figure>\nEnabling Online Travel Booking and Reservations\n\nBefore you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.\n\nIf your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.\n<blockquote class=\"wp-block-quote is-style-default\"><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em>\n\n<cite><strong>Steve Doe –&nbsp;</strong>Partner</cite></blockquote>\n\n<hr>\n\n<img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.\n\nOf course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\n<h1>H1: Reject the Fulfilling Prophecy</h1>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.\n<h2>H2:Focus On How You Want to Be</h2>\nThis is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.\n<h3>H3: Construct a Narrative</h3>\nInstead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.\n<h4>H4: Tap Into Your Imagination</h4>\nI now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.\n<h5>H5: Embrace Not Knowing</h5>\nThere’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.\n<h6>H6: Remember You Will Survive</h6>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h1>H1: Heading 1</h1>\n<h2>H2: Heading 2</h2>\n<h3>H3: Heading 3</h3>\n<h4>H4: Heading 4</h4>\n<h5>H5: Heading 5</h5>\n<h6>H6: Heading 6</h6>\n<div class=\"wp-block-spacer\" aria-hidden=\"true\"></div>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.\n<h5>Displaying Company Information</h5>\nHere are the major fear of rejection symptoms identified by psychologists:\n<ul>\n 	<li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li>\n 	<li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li>\n 	<li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li>\n 	<li>These will be crucial and highly beneficial for you later in the process.</li>\n</ul>\nThree years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.','The Restaurant Items That Wins Customers','','publish','closed','closed','','the-restaurant-items-that-wins-customers','','','2021-07-26 14:51:39','2021-07-26 14:51:39','',0,'https://healthyfoodrestaurant.in/staging/3871/the-restaurant-items-that-wins-customers/',0,'post','',0),(3059,1,'2021-07-29 11:58:00','2021-07-29 11:58:00','<!-- wp:paragraph {\"dropCap\":true} -->\n<p class=\"has-drop-cap\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>So without wasting any more time, let’s get on to it. First up: Let’s look at some of the most crucial aspects or features that are required in every travel company website.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"align\":\"wide\",\"id\":1091,\"sizeSlug\":\"full\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image alignwide size-full\"><img src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/single-image-two.jpg\" alt=\"\" class=\"wp-image-1091\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><p>Enabling Online Travel Booking and Reservations</p></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Before you can win over any visitor or potential customer, you must make a great first impression as a company. Your story about WHY and HOW your company came into existence is one of the most important things you can communicate to your audience.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>If your visitors like you as a company, they are more likely to purchase services from you. So, your company’s story is crucial to be communicated in the right way and in the most beautiful manner possible.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote {\"className\":\"is-style-default\"} -->\n<blockquote class=\"wp-block-quote is-style-default\"><p><em>The needs of a small-time tour operator are a lot different from the needs of a large international travel agency itself.</em></p><cite><strong>Steve Doe - </strong>Partner</cite></blockquote>\n<!-- /wp:quote -->\n\n<hr>\n<p><img class=\"wp-image-2232 alignright\" src=\"https://rishidemos.com/rishi-consulting/wp-content/uploads/sites/3/2021/07/service-img-one-300x169.jpg\" alt=\"\" width=\"325\" height=\"183\">Eventually, you must also offer them attractive and competitive tour packages. You must be able to clearly communicate to your customers what your services are, how they are different from others compelling manner.</p>\n<p>Of course, you would want your visitors to conveniently reach out to you and contact you. You would want to display all the crucial information about your company, including a map that would show your visitors where exactly they will find you.</p>\n\n<!-- wp:heading {\"level\":5} -->\n<h5>Displaying Company Information</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li><li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li><li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li><li>These will be crucial and highly beneficial for you later in the process.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>H1: Reject the Fulfilling Prophecy</h1>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights, it’s significantly cheaper if I stay in one place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>H2:Focus On How You Want to Be</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This is my average total monthly spending from one year living in Seattle’s Capitol Hill, one year living in San Francisco’s Upper Haight, one year traveling to 20 countries, and one month at a hotel in Bali. It is much cheaper for me to travel. Since the majority of my costs are from trains and flights.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>H3: Construct a Narrative</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Instead of working during the daylight hours and pushing all my free time to the worst part of the day, I prefer to enjoy the days and work at night. I get out of bed faster when I’m excited to go out, and when I don’t have to commute there’s just more time in the day. I like to work 7 days a week with flexible hours so I can take a day off when I please or enjoy an empty movie theater at 2pm.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>H4: Tap Into Your Imagination</h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>I now have friends all over the world whose life experiences are very different than mine and bring fresh perspectives to my ideas. I’m learning about the real problems that affect the world on a global scale, which will make me.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>H5: Embrace Not Knowing</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There’s a growing community of “digital nomads” who live a location independent lifestyle. We’re software developers, designers, writers, journalists, engineers, and all sorts of people who share a passion for the work we do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":6} -->\n<h6>H6: Remember You Will Survive</h6>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":1} -->\n<h1>H1: Heading 1</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>H2: Heading 2</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>H3: Heading 3</h3>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>H4: Heading 4</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>H5: Heading 5</h5>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":6} -->\n<h6>H6: Heading 6</h6>\n<!-- /wp:heading -->\n\n<!-- wp:spacer {\"height\":22} -->\n<div style=\"height:22px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":5} -->\n<h5>Displaying Company Information</h5>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Here are the major fear of rejection symptoms identified by psychologists:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>It’s all the better if you can accept payments online so that you can close the sales then and there.</li><li>It is much easier and convenient for your customers as well, and you too increase your chance of generating leads.</li><li>To make sure that your travel company website is compatible with some kind of online payment mechanism.</li><li>These will be crucial and highly beneficial for you later in the process.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Three years ago I was preparing to leave my job at Microsoft to move to San Francisco to start a startup. My friend asked me “but why do you need to be in San Francisco when you can work on a computer from anywhere?” His question made a lot of sense. As I thought about it more, I began to question my assumptions about a “normal life” which don’t make sense in our modern world.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table {\"className\":\"is-style-stripes\"} -->\n<figure class=\"wp-block-table is-style-stripes\"><table><thead><tr><th><strong>Name</strong></th><th>Position</th><th>Office</th></tr></thead><tbody><tr><td>Erica Romaguera</td><td>Coach</td><td>Audi</td></tr><tr><td>Caleigh Jerde</td><td>Lawyer</td><td>Pizza Hut</td></tr><tr><td>Lucas Schultz</td><td>Librarian</td><td>Burberry</td></tr><tr><td>Carole Marvin</td><td>Educator</td><td>Starbucks</td></tr><tr><td>Woodrow Nikolaus</td><td>Massage Therapist</td><td>Jack Daniel’s</td></tr></tbody></table></figure>\n<!-- /wp:table -->','Interesting ingredients can come into play here','','publish','closed','closed','','interesting-ingredients-can-come-into-play-here','','','2021-07-29 11:58:00','2021-07-29 11:58:00','',0,'https://healthyfoodrestaurant.in/staging/3871/interesting-ingredients-can-come-into-play-here/',0,'post','',0),(3080,1,'2021-11-22 10:31:54','2021-11-22 10:31:54','','brooke-lark-C1fMH2Vej8A-unsplash (1)','','inherit','closed','closed','','brooke-lark-c1fmh2vej8a-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/brooke-lark-C1fMH2Vej8A-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3081,1,'2021-11-22 10:32:17','2021-11-22 10:32:17','','nikldn-HzVHlwvQlyw-unsplash (1)','','inherit','closed','closed','','nikldn-hzvhlwvqlyw-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/nikldn-HzVHlwvQlyw-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3082,1,'2021-11-22 10:32:35','2021-11-22 10:32:35','','davide-cantelli-jpkfc5_d-DI-unsplash (1)','','inherit','closed','closed','','davide-cantelli-jpkfc5_d-di-unsplash-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3086,1,'2021-11-22 10:35:15','2021-11-22 10:35:15','','davide-cantelli-jpkfc5_d-DI-unsplash (1)','','inherit','closed','closed','','davide-cantelli-jpkfc5_d-di-unsplash-1-2','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/davide-cantelli-jpkfc5_d-DI-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(3087,1,'2021-11-22 10:36:04','2021-11-22 10:36:04','','pirata-studio-film-qt6b5042lrw-unsplash (1) (1)','','inherit','closed','closed','','pirata-studio-film-qt6b5042lrw-unsplash-1-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',3059,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/pirata-studio-film-qt6b5042lrw-unsplash-1-1.jpg',0,'attachment','image/jpeg',0),(3129,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3129','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/staging/3871/3129/',1,'nav_menu_item','',0),(3131,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3131','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/staging/3871/3131/',5,'nav_menu_item','',0),(3132,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3132','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/staging/3871/3132/',2,'nav_menu_item','',0),(3134,1,'2021-11-22 12:39:27','2021-11-22 12:00:21',' ','','','publish','closed','closed','','3134','','','2021-11-22 12:39:27','2021-11-22 12:00:21','',0,'https://healthyfoodrestaurant.in/staging/3871/3134/',3,'nav_menu_item','',0),(3138,1,'2021-11-22 12:07:58','2021-11-22 12:07:58','','logo-1','','inherit','closed','closed','','logo-1','','','2021-11-22 12:07:58','2021-11-22 12:07:58','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-1.png',0,'attachment','image/png',0),(3148,1,'2021-11-22 13:04:08','2021-11-22 13:04:08','','logo','','inherit','closed','closed','','logo-3','','','2021-11-22 13:04:08','2021-11-22 13:04:08','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-2.png',0,'attachment','image/png',0),(3150,1,'2021-11-22 13:07:54','2021-11-22 13:07:54','','logo-3','','inherit','closed','closed','','logo-3-2','','','2021-11-22 13:07:54','2021-11-22 13:07:54','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-3.png',0,'attachment','image/png',0),(3151,1,'2021-11-22 13:08:27','2021-11-22 13:08:27','','logo-4','','inherit','closed','closed','','logo-4','','','2021-11-22 13:08:27','2021-11-22 13:08:27','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-4.png',0,'attachment','image/png',0),(3163,1,'2021-11-22 14:46:32','2021-11-22 14:46:32','','cayla-1','','inherit','closed','closed','','cayla-1','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg',0,'attachment','image/jpeg',0),(3187,1,'2021-11-22 15:02:53','2021-11-22 15:02:53','','malin-strandvall-qw1hNqrMNwI-unsplash','','inherit','closed','closed','','malin-strandvall-qw1hnqrmnwi-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg',0,'attachment','image/jpeg',0),(3188,1,'2021-11-22 15:04:26','2021-11-22 15:04:26','','louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash','','inherit','closed','closed','','louis-hansel-shotsoflouis-drugo0ff19g-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg',0,'attachment','image/jpeg',0),(3189,1,'2021-11-22 15:05:24','2021-11-22 15:05:24','','cheesecake-stuffed-strawberries-500x500','','inherit','closed','closed','','cheesecake-stuffed-strawberries-500x500','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg',0,'attachment','image/jpeg',0),(3190,1,'2021-11-22 15:06:04','2021-11-22 15:06:04','','amirali-mirhashemian-4gmBIFraSuE-unsplash','','inherit','closed','closed','','amirali-mirhashemian-4gmbifrasue-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/amirali-mirhashemian-4gmBIFraSuE-unsplash.jpg',0,'attachment','image/jpeg',0),(3197,1,'2021-11-22 15:12:51','2021-11-22 15:12:51','','jason-leung-AUAuEgUxg5Q-unsplash','','inherit','closed','closed','','jason-leung-auaueguxg5q-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg',0,'attachment','image/jpeg',0),(3198,1,'2021-11-22 15:13:38','2021-11-22 15:13:38','','humphrey-muleba-YpPeBSqiQ-0-unsplash','','inherit','closed','closed','','humphrey-muleba-yppebsqiq-0-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg',0,'attachment','image/jpeg',0),(3199,1,'2021-11-22 15:14:40','2021-11-22 15:14:40','','louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash','','inherit','closed','closed','','louis-hansel-shotsoflouis-oilcfx7ri1s-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg',0,'attachment','image/jpeg',0),(3200,1,'2021-11-22 15:15:19','2021-11-22 15:15:19','','jennifer-burk-gwBcamFtPr4-unsplash','','inherit','closed','closed','','jennifer-burk-gwbcamftpr4-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg',0,'attachment','image/jpeg',0),(3201,1,'2021-11-22 15:16:02','2021-11-22 15:16:02','','tim-chow-MhpxHv0FKtE-unsplash','','inherit','closed','closed','','tim-chow-mhpxhv0fkte-unsplash','','','2023-09-07 02:12:14','2023-09-07 02:12:14','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg',0,'attachment','image/jpeg',0),(3339,1,'2021-11-24 11:02:23','2021-11-24 11:02:23','','screenshot--1','','inherit','closed','closed','','screenshot-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-1.jpg',0,'attachment','image/jpeg',0),(3340,1,'2021-11-24 11:03:44','2021-11-24 11:03:44','','screenshot--2','','inherit','closed','closed','','screenshot-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-2.jpg',0,'attachment','image/jpeg',0),(3359,1,'2021-11-24 11:11:36','2021-11-24 11:11:36','','edgar-castrejon-1SPu0KT-Ejg-unsplash (1)','','inherit','closed','closed','','edgar-castrejon-1spu0kt-ejg-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/edgar-castrejon-1SPu0KT-Ejg-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3364,1,'2021-11-24 11:15:26','2021-11-24 11:15:26','','eaters-collective-12eHC6FxPyg-unsplash','','inherit','closed','closed','','eaters-collective-12ehc6fxpyg-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/eaters-collective-12eHC6FxPyg-unsplash.jpg',0,'attachment','image/jpeg',0),(3462,1,'2021-11-24 15:06:58','2021-11-24 15:06:58','','brooke-cagle-8jp-6SjVibM-unsplash','','inherit','closed','closed','','brooke-cagle-8jp-6sjvibm-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/brooke-cagle-8jp-6SjVibM-unsplash.jpg',0,'attachment','image/jpeg',0),(3463,1,'2021-11-24 15:07:39','2021-11-24 15:07:39','','elevate-iv6yNy7oBqQ-unsplash','','inherit','closed','closed','','elevate-iv6yny7obqq-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/elevate-iv6yNy7oBqQ-unsplash.jpg',0,'attachment','image/jpeg',0),(3464,1,'2021-11-24 15:08:05','2021-11-24 15:08:05','','febrian-zakaria-SiQgni-cqFg-unsplash-1','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-1.jpg',0,'attachment','image/jpeg',0),(3704,1,'2021-11-24 17:31:40','2021-11-24 17:31:40','','spencer-russell-C7FB7H-sXJs-unsplash','','inherit','closed','closed','','spencer-russell-c7fb7h-sxjs-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/spencer-russell-C7FB7H-sXJs-unsplash.jpg',0,'attachment','image/jpeg',0),(3705,1,'2021-11-24 17:31:53','2021-11-24 17:31:53','','552963-PK36W8-345','','inherit','closed','closed','','552963-pk36w8-345','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/552963-PK36W8-345.jpg',0,'attachment','image/jpeg',0),(3706,1,'2021-11-24 17:32:02','2021-11-24 17:32:02','','2899356','','inherit','closed','closed','','2899356','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/2899356.jpg',0,'attachment','image/jpeg',0),(3707,1,'2021-11-24 17:32:11','2021-11-24 17:32:11','','alexandra-lammerink-1','','inherit','closed','closed','','alexandra-lammerink-1-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/alexandra-lammerink-1-1.jpg',0,'attachment','image/jpeg',0),(3708,1,'2021-11-24 17:32:37','2021-11-24 17:32:37','','christina-wocintechchat-com-SJvDxw0azqw-unsplash','','inherit','closed','closed','','christina-wocintechchat-com-sjvdxw0azqw-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/christina-wocintechchat-com-SJvDxw0azqw-unsplash.jpg',0,'attachment','image/jpeg',0),(3709,1,'2021-11-24 17:33:29','2021-11-24 17:33:29','','linkedin-sales-navigator-pAtA8xe_iVM-unsplash','','inherit','closed','closed','','linkedin-sales-navigator-pata8xe_ivm-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/linkedin-sales-navigator-pAtA8xe_iVM-unsplash.jpg',0,'attachment','image/jpeg',0),(3710,1,'2021-11-24 17:34:20','2021-11-24 17:34:20','','michael-dam-mEZ3PoFGs_k-unsplash','','inherit','closed','closed','','michael-dam-mez3pofgs_k-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/michael-dam-mEZ3PoFGs_k-unsplash.jpg',0,'attachment','image/jpeg',0),(3711,1,'2021-11-24 17:35:51','2021-11-24 17:35:51','','portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255','','inherit','closed','closed','','portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',751,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/portrait-thoughtful-mature-woman-eyeglasses-holding-notebook_171337-19255.jpg',0,'attachment','image/jpeg',0),(3789,1,'2021-11-24 18:13:10','2021-11-24 18:13:10','','emiliano-vittoriosi-OFismyezPnY-unsplash','','inherit','closed','closed','','emiliano-vittoriosi-ofismyezpny-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',749,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/emiliano-vittoriosi-OFismyezPnY-unsplash.jpg',0,'attachment','image/jpeg',0),(3878,1,'2021-11-25 04:34:17','2021-11-25 04:34:17','','jason-leung-AUAuEgUxg-5','','inherit','closed','closed','','jason-leung-auaueguxg-5','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',749,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg-5.jpg',0,'attachment','image/jpeg',0),(4079,1,'2021-11-25 08:17:40','2021-11-25 08:17:40','','img','','inherit','closed','closed','','img','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/img.jpg',0,'attachment','image/jpeg',0),(4080,1,'2021-11-25 08:18:41','2021-11-25 08:18:41','','jason-leung-i-LbNM7B66I-unsplash','','inherit','closed','closed','','jason-leung-i-lbnm7b66i-unsplash','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-i-LbNM7B66I-unsplash.jpg',0,'attachment','image/jpeg',0),(4081,1,'2021-11-25 08:25:29','2021-11-25 08:25:29','[text* Your-full-name placeholder \"Full Name\"]\r\n\r\n[number* your-number placeholder \"Phone Number\"]\r\n\r\n[email* your-email-address placeholder \"Your Email Address\"]\r\n\r\n[textarea* your-message placeholder \"Message\"]\r\n\r\n[submit \"Send Message\"]\n1\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[_site_admin_email]\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [your-email]\n\n\n\n\n[_site_title] \"[your-subject]\"\n[_site_title] <wordpress@rishidemos.com>\n[your-email]\nMessage Body:\r\n[your-message]\r\n\r\n-- \r\nThis e-mail was sent from a contact form on [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nThank you for your message. It has been sent.\nThere was an error trying to send your message. Please try again later.\nOne or more fields have an error. Please check and try again.\nThere was an error trying to send your message. Please try again later.\nYou must accept the terms and conditions before sending your message.\nThe field is required.\nThe field is too long.\nThe field is too short.\nThere was an unknown error uploading the file.\nYou are not allowed to upload files of this type.\nThe file is too big.\nThere was an error uploading the file.\nThe date format is incorrect.\nThe date is before the earliest one allowed.\nThe date is after the latest one allowed.\nThe number format is invalid.\nThe number is smaller than the minimum allowed.\nThe number is larger than the maximum allowed.\nThe answer to the quiz is incorrect.\nThe e-mail address entered is invalid.\nThe URL is invalid.\nThe telephone number is invalid.','contact form','','publish','closed','closed','','contact-form','','','2021-11-25 08:25:29','2021-11-25 08:25:29','',0,'https://healthyfoodrestaurant.in/staging/3871/?post_type=wpcf7_contact_form&p=4081',0,'wpcf7_contact_form','',0),(4106,1,'2021-11-25 10:18:16','2021-11-25 10:18:16','','taylor-kiser-POFG828-GQc-unsplash (1)','','inherit','closed','closed','','taylor-kiser-pofg828-gqc-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',753,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/taylor-kiser-POFG828-GQc-unsplash-1.jpg',0,'attachment','image/jpeg',0),(4209,1,'2021-11-25 11:18:38','2021-11-25 11:18:38','','Logo','','inherit','closed','closed','','logo-5','','','2021-11-25 11:18:38','2021-11-25 11:18:38','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Logo-5.png',0,'attachment','image/png',0),(4210,1,'2021-11-25 11:20:51','2021-11-25 11:20:51','','Logo-Whhite','','inherit','closed','closed','','logo-whhite','','','2021-11-25 11:20:51','2021-11-25 11:20:51','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Logo-Whhite.png',0,'attachment','image/png',0),(4211,1,'2021-02-17 11:46:14','2021-02-17 11:46:14','','Default Kit','','publish','closed','closed','','default-kit','','','2023-10-14 07:18:36','2023-10-14 07:18:36','',0,'https://healthyfoodrestaurant.in/staging/3871/?elementor_library=default-kit',0,'elementor_library','',0),(4221,1,'2021-11-25 11:52:30','2021-11-25 11:52:30','','Logo','','inherit','closed','closed','','logo-6','','','2021-11-25 11:52:30','2021-11-25 11:52:30','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Logo-6.png',0,'attachment','image/png',0),(4250,1,'2021-11-25 12:45:19','2021-11-25 12:45:19','','alex-munsell-auIbTAcSH-21','','inherit','closed','closed','','alex-munsell-auibtacsh-21','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1794,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/alex-munsell-auIbTAcSH-21.jpg',0,'attachment','image/jpeg',0),(4252,1,'2021-11-25 12:54:01','2021-11-25 12:54:01','','brooke-lark-oaz0raysASk-unsplash (2) (1)','','inherit','closed','closed','','brooke-lark-oaz0raysask-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',3049,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/brooke-lark-oaz0raysASk-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4253,1,'2021-11-25 12:54:41','2021-11-25 12:54:41','','joseph-gonzalez-fdlZBWIP0aM-unsplash (2) (1)','','inherit','closed','closed','','joseph-gonzalez-fdlzbwip0am-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1795,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/joseph-gonzalez-fdlZBWIP0aM-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4255,1,'2021-11-25 12:55:52','2021-11-25 12:55:52','','stil-u2Lp8tXIcjw-unsplash (2) (1)','','inherit','closed','closed','','stil-u2lp8txicjw-unsplash-2-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',1794,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/07/stil-u2Lp8tXIcjw-unsplash-2-1.jpg',0,'attachment','image/jpeg',0),(4314,1,'2021-11-25 14:41:02','2021-11-25 14:41:02','','brooke-cagle-1','','inherit','closed','closed','','brooke-cagle-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/brooke-cagle-1.jpg',0,'attachment','image/jpeg',0),(4315,1,'2021-11-25 14:42:32','2021-11-25 14:42:32','','elevate-iv-1','','inherit','closed','closed','','elevate-iv-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/elevate-iv-1.jpg',0,'attachment','image/jpeg',0),(4316,1,'2021-11-25 14:42:33','2021-11-25 14:42:33','','febrian-zakaria-SiQgni-cqFg-unsplash-3','','inherit','closed','closed','','febrian-zakaria-siqgni-cqfg-unsplash-3','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash-3.jpg',0,'attachment','image/jpeg',0),(4317,1,'2021-11-25 14:42:35','2021-11-25 14:42:35','','petr-sevcovic-e5Q5vWO55uU-unsplash (1)','','inherit','closed','closed','','petr-sevcovic-e5q5vwo55uu-unsplash-1','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/petr-sevcovic-e5Q5vWO55uU-unsplash-1.jpg',0,'attachment','image/jpeg',0),(4318,1,'2021-11-25 14:42:36','2021-11-25 14:42:36','','screenshot--3','','inherit','closed','closed','','screenshot-3','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-3.jpg',0,'attachment','image/jpeg',0),(4319,1,'2021-11-25 14:42:37','2021-11-25 14:42:37','','screenshot--4','','inherit','closed','closed','','screenshot-4-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-1.jpg',0,'attachment','image/jpeg',0),(4532,1,'2021-11-28 06:07:11','2021-11-28 06:07:11','','alex-munsell-auIbTAcSH6E-unsplash','','inherit','closed','closed','','alex-munsell-auibtacsh6e-unsplash-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',115,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/alex-munsell-auIbTAcSH6E-unsplash.jpg',0,'attachment','image/jpeg',0),(4695,1,'2021-11-29 04:34:08','2021-11-29 04:34:08','','Path 24974','','inherit','closed','closed','','path-24974','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Path-24974.svg',0,'attachment','image/svg+xml',0),(4697,1,'2021-11-29 04:37:56','2021-11-29 04:37:56','','Path 24974','','inherit','closed','closed','','path-24974-2','','','2023-09-07 02:12:15','2023-09-07 02:12:15','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Path-24974-1.svg',0,'attachment','image/svg+xml',0),(4698,2,'2023-09-07 13:48:03','2023-09-07 13:48:03','','Blog','','inherit','closed','closed','','1561-revision-v1','','','2023-09-07 13:48:03','2023-09-07 13:48:03','',1561,'https://healthyfoodrestaurant.in/staging/3871/?p=4698',0,'revision','',0),(4700,2,'2023-09-07 13:52:27','2023-09-07 13:52:27','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.51513247100506\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-07 13:52:27\"\n    }\n}','','','publish','closed','closed','','7964622d-b711-4147-9b8a-e795d37f13b0','','','2023-09-07 13:52:27','2023-09-07 13:52:27','',0,'https://healthyfoodrestaurant.in/staging/3871/7964622d-b711-4147-9b8a-e795d37f13b0/',0,'customize_changeset','',0),(4701,2,'2023-09-07 13:52:27','2023-09-07 13:52:27','','Default Kit','','inherit','closed','closed','','4211-revision-v1','','','2023-09-07 13:52:27','2023-09-07 13:52:27','',4211,'https://healthyfoodrestaurant.in/staging/3871/?p=4701',0,'revision','',0),(4702,2,'2023-09-08 02:00:22','2023-09-08 02:00:22','{\n    \"rishi::layout_style\": {\n        \"value\": \"no-sidebar\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:00:22\"\n    }\n}','','','publish','closed','closed','','a519d2d0-4e3a-4d7f-9df9-9969a8edaf0a','','','2023-09-08 02:00:22','2023-09-08 02:00:22','',0,'https://healthyfoodrestaurant.in/staging/3871/a519d2d0-4e3a-4d7f-9df9-9969a8edaf0a/',0,'customize_changeset','',0),(4703,2,'2023-09-08 02:00:50','2023-09-08 02:00:50','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:00:50\"\n    }\n}','','','publish','closed','closed','','b0e77634-5d3e-461f-992f-e5832ffe2a49','','','2023-09-08 02:00:50','2023-09-08 02:00:50','',0,'https://healthyfoodrestaurant.in/staging/3871/b0e77634-5d3e-461f-992f-e5832ffe2a49/',0,'customize_changeset','',0),(4704,2,'2023-09-08 02:01:24','2023-09-08 02:01:24','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": \"4210\",\n                                    \"tablet\": \"4210\",\n                                    \"mobile\": \"4210\",\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"172\",\n                                    \"tablet\": \"172\",\n                                    \"mobile\": \"172\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    },\n    \"nav_menu_item[3130]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    },\n    \"nav_menu_item[1563]\": {\n        \"value\": false,\n        \"type\": \"nav_menu_item\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:01:24\"\n    }\n}','','','publish','closed','closed','','9d07ae9a-032a-461d-aac3-c9bb728f7c8b','','','2023-09-08 02:01:24','2023-09-08 02:01:24','',0,'https://healthyfoodrestaurant.in/staging/3871/9d07ae9a-032a-461d-aac3-c9bb728f7c8b/',0,'customize_changeset','',0),(4705,2,'2023-09-08 02:03:32','2023-09-08 02:03:32','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"widget-area-1\",\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"copyright:copyright_text\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:03:32\"\n    }\n}','','','publish','closed','closed','','fdeca5cb-ba12-412b-8fc8-f9e73d76938a','','','2023-09-08 02:03:32','2023-09-08 02:03:32','',0,'https://healthyfoodrestaurant.in/staging/3871/?p=4705',0,'customize_changeset','',0),(4706,2,'2023-09-08 02:03:54','2023-09-08 02:03:54','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"__should_refresh__\": false,\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"widget-area-1\",\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"copyright:copyright_text\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:03:54\"\n    }\n}','','','publish','closed','closed','','488ebb9c-9c6a-4e69-a349-5c59745c5bbd','','','2023-09-08 02:03:54','2023-09-08 02:03:54','',0,'https://healthyfoodrestaurant.in/staging/3871/488ebb9c-9c6a-4e69-a349-5c59745c5bbd/',0,'customize_changeset','',0),(4708,2,'2023-09-08 02:07:34','2023-09-08 02:07:34','{\n    \"rishi::rootTypography\": {\n        \"value\": {\n            \"family\": \"Averia Gruesa Libre\",\n            \"variation\": \"n4\",\n            \"size\": {\n                \"desktop\": \"18px\",\n                \"tablet\": \"18px\",\n                \"mobile\": \"16px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.75\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h1Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n8\",\n            \"size\": {\n                \"desktop\": \"50px\",\n                \"tablet\": \"50px\",\n                \"mobile\": \"36px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h2Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n8\",\n            \"size\": {\n                \"desktop\": \"45px\",\n                \"tablet\": \"45px\",\n                \"mobile\": \"30px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h3Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"35px\",\n                \"tablet\": \"35px\",\n                \"mobile\": \"28px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h4Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"30px\",\n                \"tablet\": \"30px\",\n                \"mobile\": \"24px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h5Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"24px\",\n                \"tablet\": \"24px\",\n                \"mobile\": \"22px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    },\n    \"rishi::h6Typography\": {\n        \"value\": {\n            \"family\": \"Default\",\n            \"variation\": \"n7\",\n            \"size\": {\n                \"desktop\": \"20px\",\n                \"tablet\": \"20px\",\n                \"mobile\": \"18px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.5\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-08 02:07:23\"\n    }\n}','','','publish','closed','closed','','0871fee2-dbb4-4c4e-9b39-5ceafd218183','','','2023-09-08 02:07:34','2023-09-08 02:07:34','',0,'https://healthyfoodrestaurant.in/staging/3871/?p=4708',0,'customize_changeset','',0),(4712,2,'2023-09-08 02:19:05','2023-09-08 02:19:05','','interior','','inherit','open','closed','','interior','','','2023-09-08 02:19:05','2023-09-08 02:19:05','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/interior.jpg',0,'attachment','image/jpeg',0),(4713,2,'2023-09-08 02:19:39','2023-09-08 02:19:39','','food','','inherit','open','closed','','food','','','2023-09-08 02:19:39','2023-09-08 02:19:39','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/food.jpg',0,'attachment','image/jpeg',0),(4735,2,'2023-09-09 10:14:17','2023-09-09 10:14:17','','daaal','','inherit','open','closed','','daaal','','','2023-09-09 10:14:42','2023-09-09 10:14:42','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg',0,'attachment','image/jpeg',0),(4736,2,'2023-09-09 10:15:12','2023-09-09 10:15:12','','sbzi alo','','inherit','open','closed','','sbzi-alo','','','2023-09-09 10:15:35','2023-09-09 10:15:35','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/sbzi-alo.jpg',0,'attachment','image/jpeg',0),(4737,2,'2023-09-09 10:16:12','2023-09-09 10:16:12','','thali','','inherit','open','closed','','thali','','','2023-09-09 10:17:44','2023-09-09 10:17:44','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali.jpg',0,'attachment','image/jpeg',0),(4744,2,'2023-09-15 01:39:02','2023-09-15 01:39:02','','menu','','inherit','open','closed','','menu-2','','','2023-09-15 01:39:02','2023-09-15 01:39:02','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg',0,'attachment','image/jpeg',0),(4745,2,'2023-09-15 01:40:02','2023-09-15 01:40:02','','gravy','','inherit','open','closed','','gravy','','','2023-09-15 01:40:02','2023-09-15 01:40:02','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/gravy.jpg',0,'attachment','image/jpeg',0),(4746,2,'2023-09-15 01:42:10','2023-09-15 01:42:10','','khana','','inherit','open','closed','','khana','','','2023-09-15 01:42:10','2023-09-15 01:42:10','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg',0,'attachment','image/jpeg',0),(4756,2,'2023-09-15 02:06:58','2023-09-15 02:06:58','{\n    \"rishi::custom_logo\": {\n        \"value\": 4758,\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:05:41\"\n    },\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"142\",\n                                    \"tablet\": \"142\",\n                                    \"mobile\": \"142\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"84\",\n                                    \"tablet\": \"84\",\n                                    \"mobile\": \"84\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant\",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"no\",\n                                \"blogdescription\": \"Just another rishidemos.com Sites site\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logo_title_layout\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:06:49\"\n    }\n}','','','publish','closed','closed','','41428851-6bc0-4433-846d-bb5952247065','','','2023-09-15 02:06:58','2023-09-15 02:06:58','',0,'https://healthyfoodrestaurant.in/staging/3871/?p=4756',0,'customize_changeset','',0),(4758,2,'2023-09-15 02:04:15','2023-09-15 02:04:15','','7776956','','inherit','open','closed','','7776956','','','2023-09-15 02:06:27','2023-09-15 02:06:27','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/7776956.jpg',0,'attachment','image/jpeg',0);
INSERT INTO `staging_ajj_posts` VALUES (4759,2,'2023-09-15 02:08:25','2023-09-15 02:08:25','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"116\",\n                                    \"tablet\": \"116\",\n                                    \"mobile\": \"116\",\n                                    \"__changed\": []\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:sticky_logo_shrink\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:08:25\"\n    }\n}','','','publish','closed','closed','','e26eea68-640f-4385-97c1-80a362c55b1c','','','2023-09-15 02:08:25','2023-09-15 02:08:25','',0,'https://healthyfoodrestaurant.in/staging/3871/e26eea68-640f-4385-97c1-80a362c55b1c/',0,'customize_changeset','',0),(4760,2,'2023-09-15 02:08:59','2023-09-15 02:08:59','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"116\",\n                                    \"tablet\": \"116\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:08:59\"\n    }\n}','','','publish','closed','closed','','55d41023-4a40-4a77-80c1-d3440f114d2d','','','2023-09-15 02:08:59','2023-09-15 02:08:59','',0,'https://healthyfoodrestaurant.in/staging/3871/55d41023-4a40-4a77-80c1-d3440f114d2d/',0,'customize_changeset','',0),(4761,2,'2023-09-15 02:09:49','2023-09-15 02:09:49','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\",\n            \"__forced_static_header__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:09:49\"\n    }\n}','','','publish','closed','closed','','ae28c34d-04ed-4097-aee1-32a7d82e1acc','','','2023-09-15 02:09:49','2023-09-15 02:09:49','',0,'https://healthyfoodrestaurant.in/staging/3871/ae28c34d-04ed-4097-aee1-32a7d82e1acc/',0,'customize_changeset','',0),(4762,2,'2023-09-15 02:11:57','2023-09-15 02:11:57','{\n    \"widget_block[7]\": {\n        \"value\": {\n            \"raw_instance\": {\n                \"content\": \"<!-- wp:gallery {\\\"linkTo\\\":\\\"none\\\",\\\"sizeSlug\\\":\\\"full\\\",\\\"align\\\":\\\"center\\\"} -->\\n<figure class=\\\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped\\\"><!-- wp:image {\\\"id\\\":3151,\\\"sizeSlug\\\":\\\"full\\\",\\\"linkDestination\\\":\\\"none\\\"} -->\\n<figure class=\\\"wp-block-image size-full\\\"><img src=\\\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/logo-4.png\\\" alt=\\\"\\\" class=\\\"wp-image-3151\\\"/></figure>\\n<!-- /wp:image --></figure>\\n<!-- /wp:gallery -->\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"sidebars_widgets[footer-one]\": {\n        \"value\": [\n            \"block-7\",\n            \"block-9\"\n        ],\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5269002827327034\": \"update\",\n            \"0.5245734896991188\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [\n                                    \"menu\"\n                                ],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false,\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": true\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    },\n    \"widget_block[9]\": {\n        \"value\": {\n            \"raw_instance\": {\n                \"content\": \"<!-- wp:heading {\\\"textAlign\\\":\\\"center\\\",\\\"level\\\":4} -->\\n<h4 class=\\\"wp-block-heading has-text-align-center\\\">Healthy Food Restaurant</h4>\\n<!-- /wp:heading -->\"\n            }\n        },\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-09-15 02:11:57\"\n    }\n}','','','publish','closed','closed','','8642d21e-36f7-4dc6-aff8-5f04a9c793ea','','','2023-09-15 02:11:57','2023-09-15 02:11:57','',0,'https://healthyfoodrestaurant.in/staging/3871/8642d21e-36f7-4dc6-aff8-5f04a9c793ea/',0,'customize_changeset','',0),(4763,2,'2023-10-10 02:30:03','2023-10-10 02:30:03','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"menu\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"socials:footer_socials\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-10 02:30:03\"\n    }\n}','','','publish','closed','closed','','0f34b657-1e0c-43c3-8648-3df2d13bfa45','','','2023-10-10 02:30:03','2023-10-10 02:30:03','',0,'https://healthyfoodrestaurant.in/staging/3871/0f34b657-1e0c-43c3-8648-3df2d13bfa45/',0,'customize_changeset','',0),(4764,2,'2023-10-10 02:30:34','2023-10-10 02:30:34','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"menu\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"footer-menu\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-10 02:30:34\"\n    }\n}','','','publish','closed','closed','','1d6a4375-4c46-4fd2-982e-0ca30bba7e3d','','','2023-10-10 02:30:34','2023-10-10 02:30:34','',0,'https://healthyfoodrestaurant.in/staging/3871/1d6a4375-4c46-4fd2-982e-0ca30bba7e3d/',0,'customize_changeset','',0),(4769,2,'2023-10-14 06:45:19','2023-10-14 06:45:19','','coffe','','inherit','open','closed','','coffe','','','2023-10-14 06:45:19','2023-10-14 06:45:19','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/10/coffe.jpg',0,'attachment','image/jpeg',0),(4770,2,'2023-10-14 06:46:11','2023-10-14 06:46:11','','minestrone soup','','inherit','open','closed','','minestrone-soup','','','2023-10-14 06:46:11','2023-10-14 06:46:11','',106,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/10/minestrone-soup.jpg',0,'attachment','image/jpeg',0),(4775,2,'2023-10-14 06:51:44','2023-10-14 06:51:44','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:51:44','2023-10-14 06:51:44','',106,'https://healthyfoodrestaurant.in/staging/3871/?p=4775',0,'revision','',0),(4776,2,'2023-10-14 06:51:44','2023-10-14 06:51:44','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:51:44','2023-10-14 06:51:44','',106,'https://healthyfoodrestaurant.in/staging/3871/?p=4776',0,'revision','',0),(4777,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/staging/3871/?p=4777',0,'revision','',0),(4778,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/staging/3871/?p=4778',0,'revision','',0);
INSERT INTO `staging_ajj_posts` VALUES (4779,2,'2023-10-14 06:52:20','2023-10-14 06:52:20','<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Delicious Food For You.</h2>		\n		<p>We have served more than 10K customers around the globe. Loved and Trusted by our customers.</p>		\n			<a href=\"#\">\n						View Our Menu\n					</a>\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style>												<img width=\"750\" height=\"516\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n															<img width=\"750\" height=\"563\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/thali-1024x768.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?resize=768%2C576&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/thali.jpg?w=1360&amp;ssl=1 1360w\" sizes=\"(max-width: 750px) 100vw, 750px\" />															\n			<h2>What We Offer</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"66\" height=\"51\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/wedding-dinner.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Organic Ingendiants</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h5>Daily Fresh</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"70\" height=\"52\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/leaf-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Best Chefs</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Story</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n															<img width=\"1360\" height=\"1020\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/khana.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?w=1360&amp;ssl=1 1360w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=300%2C225&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=1024%2C768&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/khana.jpg?resize=768%2C576&amp;ssl=1 768w\" sizes=\"(max-width: 1360px) 100vw, 1360px\" />															\n															<img width=\"960\" height=\"660\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/menu.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?w=960&amp;ssl=1 960w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=300%2C206&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2023/09/menu.jpg?resize=768%2C528&amp;ssl=1 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" />															\n                             Cheese Croissants\n                             Bruschetti\n                             Awesome Vegetables\n                             Tasty Snacks\n                             All-Time Best Recipes\n                             Meal For Whole Family\n                                    <h3 style=\"text-align: left\">Cheese Croissants</h3>\n<p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\'.</p>\n<p>Making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for \'lorem ipsum\' will uncover many web.</p>\n                                        <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/daaal.jpg\" alt=\"healthy food restaurant\">\n                                    <h3 style=\"text-align: left\">Bruschetti</h3>\n<p>Bruschetti\'s report from earlier this year warned that more than half a million people are expected to die within 10 years as temperatures rise. In Sydney, there were 45 instances of severe water shortages in 50 days — the worst such drought for 60 seasons, researchers said.</p>\n<p>The deal could provide some relief for small-business owners who might be forced into bankruptcy if they don\'t get more money from banks and credit unions, Mr: Trump\'s pick Paul Ryan told members of his congressional conference in June 2015</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/jordi-pujadas-MHzYnDM34IQ-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Awesome Vegetables<br />\n</h3>\n<p>Awesome Vegtables\' of all kinds, you know? As it turns out that\'s what happened… the Vegan Pride Parade had their \"Festival\" earlier this week and even made me make a few vegan treats to celebrate.</p>\n<p>Awesome Vegtables If you\'re having a hard time finding veg-friendly and vegan dishes, there\'s really nothing worse than reading about the amazing work being done by people who want to be good.</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/casey-lee-awj7sRviVXo-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Tasty Snacks<br />\n</h3>\n<p>Tasty Snacks in restaurant : a deliciously thick (and often spicy) snack at The Oven. You can make them very simple with chopped nuts or dried fruits and then add some sweetener to the mixture. Or you could try making it into what is called \"Snack\".</p>\n<p>This means that there are several types of ice cream treats like these scattered around restaurants all over Japan, but I used one from this little cafe by Kyoto\'s famous Takachino -which also includes many different kinds! </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/joseph-gonzalez-fdlZBWIP0aM-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">All-Time Best Recipes</p>\n</h3>\n<p>All-Time Best Recipes in restaurant style by Lourdes Arruda, chef and cofounder of Southside Dining Group. She also created the popular The Pastry Chef\'s Index Cookbook. While you\'re looking for a perfect recipe to put on your plate or make with one guest over another, this list includes 15 recipes that are worth sharing!</p>\n<p>All-Time Best Recipes in restaurant food. All recipes from Top Ten Times Cookbook: Most Read New York City restaurants are featured here</p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/stil-u2Lp8tXIcjw-unsplash-1.jpg\" alt=\"\">\n                                    <h3 style=\"text-align: left\">Meal For Whole Family<br />\n</h3>\n<p>Meal For Whole Family in restaurant. The meal includes: Pasta, chicken and tomato soup with rice as well salad. Vegetarian options are available by request or the restaurants will take you there for dinner before picking up your food at a bar to complete your meals on-site.</p>\n<p>Meal For Whole Family in restaurant on 6/11 The best meals of the year, complete with food suggestions and recipe updates. </p>\n                                        <img src=\"https://rishidemos.com/restaurant/wp-content/uploads/sites/9/2021/11/brooke-lark-oaz0raysASk-unsplash-1.jpg\" alt=\"\">\n			<h2>Our Services</h2>		\n		<p>Healthy Food Restaurant is the ultimate and only choice for Food Lover near Prabhu Sri Ram International Airport Ayodhya. We provide Healthy, Delicious, Hygienic and Pure Vegetarian Food in Faizabad Ayodhya. Our Services are truly Exceptional.</p>		\n															<img width=\"570\" height=\"430\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?w=570&amp;ssl=1 570w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/screenshot-2020.08.06-07_48_28-1.png?resize=300%2C226&amp;ssl=1 300w\" sizes=\"(max-width: 570px) 100vw, 570px\" />															\n			<h5>Breakfast</h5>		\n		<p>It is a long established fact that a reader will be distracted by the readable content.</p>		\n															<img width=\"1920\" height=\"622\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/offer-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?w=1920&amp;ssl=1 1920w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=300%2C97&amp;ssl=1 300w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1024%2C332&amp;ssl=1 1024w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=768%2C249&amp;ssl=1 768w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/02/offer-1.png?resize=1536%2C498&amp;ssl=1 1536w\" sizes=\"(max-width: 1920px) 100vw, 1920px\" />															\n			<h5>Lunch</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n															<img width=\"71\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/Page-1-1.png\" alt=\"\" loading=\"lazy\" />															\n			<h5>Dinner</h5>		\n		It is a long established fact that a reader will be distracted by the readable content.		\n			<h2>Our Menu</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cayla-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Mussels Soup                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Italian Spaghetti                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-DRUgO0fF19g-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Beef Burger                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/cheesecake-stuffed-strawberries-500x500-1.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Stuffed Strawberry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/malin-strandvall-qw1hNqrMNwI-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Scrambled Eggs in puff Pastry                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jason-leung-AUAuEgUxg5Q-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Sicilian Meatballs                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/humphrey-muleba-YpPeBSqiQ-0-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Seafood Salad                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/louis-hansel-shotsoflouis-OiLcFX7RI1s-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Roasted Chicken                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/jennifer-burk-gwBcamFtPr4-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Grilled Fish                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n                            <figure>\n                                                            <img src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/tim-chow-MhpxHv0FKtE-unsplash.jpg\" alt=\"\">   \n                                                        </figure>\n                                        <h2>\n                                            Soft-Boiled Organic Egg                                        </h2>\n                                            $49                                        \n                        It is a long established fact that a reader.\n			<a href=\"#\">\n						View All Menu\n					</a>\n			<h2>Our Head Chef</h2>		\n		<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don\'t look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn\'t anything embarrassing hidden.</p><p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search</p>		\n															<img width=\"60\" height=\"60\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/02/amirali-mirhashemian-4gmBIFraSuE-unsplash-1.png\" alt=\"\" loading=\"lazy\" />															\n															<img width=\"500\" height=\"602\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?w=500&amp;ssl=1 500w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/febrian-zakaria-SiQgni-cqFg-unsplash.jpg?resize=249%2C300&amp;ssl=1 249w\" sizes=\"(max-width: 500px) 100vw, 500px\" />															\n			<h4>Jack Richard</h4>		\n		Head Chef		\n			<style>/*! elementor - v3.16.0 - 09-10-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%}.elementor-shape-circle .elementor-icon.elementor-social-icon{border-radius:50%}</style>		\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"facebook-logo\" width=\"8.036\" height=\"14.864\" viewBox=\"0 0 8.036 14.864\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M29.81,0,27.883,0a3.385,3.385,0,0,0-3.565,3.658V5.345H22.38a.3.3,0,0,0-.3.3V8.091a.3.3,0,0,0,.3.3h1.938v6.166a.3.3,0,0,0,.3.3H27.15a.3.3,0,0,0,.3-.3V8.395h2.266a.3.3,0,0,0,.3-.3V5.648a.3.3,0,0,0-.3-.3H27.453V3.915c0-.687.164-1.036,1.059-1.036h1.3a.3.3,0,0,0,.3-.3V.306A.3.3,0,0,0,29.81,0Z\" transform=\"translate(-22.077 0)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"twitter\" width=\"15.583\" height=\"12.661\" viewBox=\"0 0 15.583 12.661\"><g id=\"Group_3\" data-name=\"Group 3\" transform=\"translate(0 0)\"><path id=\"Path_2\" data-name=\"Path 2\" d=\"M15.583,49.5a6.661,6.661,0,0,1-1.841.5,3.177,3.177,0,0,0,1.405-1.766,6.384,6.384,0,0,1-2.026.773A3.194,3.194,0,0,0,7.6,51.2a3.29,3.29,0,0,0,.074.729,9.042,9.042,0,0,1-6.585-3.342,3.2,3.2,0,0,0,.982,4.27,3.155,3.155,0,0,1-1.443-.393v.035a3.209,3.209,0,0,0,2.559,3.139,3.189,3.189,0,0,1-.838.105,2.825,2.825,0,0,1-.6-.055,3.225,3.225,0,0,0,2.985,2.225A6.419,6.419,0,0,1,.765,59.271,5.983,5.983,0,0,1,0,59.227a8.994,8.994,0,0,0,4.9,1.434,9.03,9.03,0,0,0,9.093-9.091c0-.141,0-.278-.012-.413A6.373,6.373,0,0,0,15.583,49.5Z\" transform=\"translate(0 -48)\"></path></g></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"instagram\" width=\"16.647\" height=\"16.647\" viewBox=\"0 0 16.647 16.647\"><path id=\"Path_24957\" data-name=\"Path 24957\" d=\"M12.14,0H4.505A4.511,4.511,0,0,0,0,4.506v7.635a4.511,4.511,0,0,0,4.506,4.506H12.14a4.511,4.511,0,0,0,4.506-4.506V4.506A4.511,4.511,0,0,0,12.14,0ZM8.323,12.875a4.552,4.552,0,1,1,4.552-4.552A4.557,4.557,0,0,1,8.323,12.875Zm4.661-8.03A1.345,1.345,0,1,1,14.328,3.5,1.346,1.346,0,0,1,12.983,4.845Zm0,0\" transform=\"translate(0.001 0)\"></path><path id=\"Path_24958\" data-name=\"Path 24958\" d=\"M149.6,146.02a3.576,3.576,0,1,0,3.576,3.576A3.58,3.58,0,0,0,149.6,146.02Zm0,0\" transform=\"translate(-141.272 -141.272)\"></path><path id=\"Path_24959\" data-name=\"Path 24959\" d=\"M388.361,96.3a.369.369,0,1,0,.369.369A.37.37,0,0,0,388.361,96.3Zm0,0\" transform=\"translate(-375.377 -93.17)\"></path></svg>					</a>\n					<a target=\"_blank\" rel=\"noopener\">\n						<svg xmlns=\"http://www.w3.org/2000/svg\" id=\"linkedin\" width=\"13.539\" height=\"13.015\" viewBox=\"0 0 13.539 13.015\"><g id=\"Group_5\" data-name=\"Group 5\" transform=\"translate(0 3.707)\"><g id=\"Group_4\" data-name=\"Group 4\"><rect id=\"Rectangle_2\" data-name=\"Rectangle 2\" width=\"3.028\" height=\"9.308\"></rect></g></g><g id=\"Group_7\" data-name=\"Group 7\" transform=\"translate(4.231 3.707)\"><g id=\"Group_6\" data-name=\"Group 6\"><path id=\"Path_6\" data-name=\"Path 6\" d=\"M167.044,160.109c-.032-.01-.063-.021-.1-.03s-.081-.017-.123-.024a2.712,2.712,0,0,0-.543-.055,4.207,4.207,0,0,0-3.254,1.78V160H160v9.308h3.028v-5.077s2.288-3.187,3.254-.846v5.923h3.027v-6.281A3.019,3.019,0,0,0,167.044,160.109Z\" transform=\"translate(-160 -160)\"></path></g></g><g id=\"Group_9\" data-name=\"Group 9\" transform=\"translate(0.524 0)\"><g id=\"Group_8\" data-name=\"Group 8\" transform=\"translate(0 0)\"><circle id=\"Ellipse_5\" data-name=\"Ellipse 5\" cx=\"1.07\" cy=\"1.07\" r=\"1.07\"></circle></g></g></svg>					</a>\n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-20-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-20.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    Lisa Stoner\n                                                    Marketing Manager Of XYZ Company\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-22-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-22.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                    <img width=\"150\" height=\"150\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/screenshot-4-150x150.jpg\" alt=\"\" decoding=\"async\" loading=\"lazy\" srcset=\"https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=150%2C150&amp;ssl=1 150w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=355%2C355&amp;ssl=1 355w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=170%2C170&amp;ssl=1 170w, https://i0.wp.com/healthyfoodrestaurant.in/wp-content/uploads/2021/11/screenshot-4.jpg?resize=300%2C300&amp;ssl=1 300w\" sizes=\"(max-width: 150px) 100vw, 150px\" />                \n                                    John Doe\n                                                    Managing Director\n                                                “It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using \'Content here, content here\', making it look like readable English.                                             \n                                    <!-- If we need navigation buttons -->\n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.348\" viewBox=\"0 0 45.521 30.348\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M.278,99.836,14.5,85.611a.948.948,0,1,1,1.341,1.341L3.238,99.558H44.573a.948.948,0,1,1,0,1.9H3.238l12.607,12.606A.948.948,0,1,1,14.5,115.4L.278,101.177A.948.948,0,0,1,.278,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n                            <svg id=\"right\" xmlns=\"http://www.w3.org/2000/svg\" width=\"45.521\" height=\"30.347\" viewBox=\"0 0 45.521 30.347\"><g id=\"Group_30\" data-name=\"Group 30\" transform=\"translate(0 0)\"><path id=\"Path_1\" data-name=\"Path 1\" d=\"M45.243,99.836,31.018,85.611a.948.948,0,1,0-1.341,1.341L42.284,99.558H.948a.948.948,0,1,0,0,1.9H42.284L29.677,114.061a.948.948,0,1,0,1.341,1.341l14.225-14.225A.948.948,0,0,0,45.243,99.836Z\" transform=\"translate(0 -85.333)\"/></g></svg>                        \n			<h2>Make a Reservation</h2>		\n		It is a long established fact that a reader will be distracted by the read content of a page when looking at its layout.		\n<p role=\"status\" aria-live=\"polite\" aria-atomic=\"true\"></p> <ul></ul>\n<form action=\"/wp-admin/admin-ajax.php#wpcf7-f1172-o1\" method=\"post\" aria-label=\"Contact form\" novalidate=\"novalidate\" data-status=\"init\">\n<input type=\"hidden\" name=\"_wpcf7\" value=\"1172\" />\n<input type=\"hidden\" name=\"_wpcf7_version\" value=\"5.8.1\" />\n<input type=\"hidden\" name=\"_wpcf7_locale\" value=\"en_US\" />\n<input type=\"hidden\" name=\"_wpcf7_unit_tag\" value=\"wpcf7-f1172-o1\" />\n<input type=\"hidden\" name=\"_wpcf7_container_post\" value=\"0\" />\n<input type=\"hidden\" name=\"_wpcf7_posted_data_hash\" value=\"\" />\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Full Name\" value=\"\" type=\"text\" name=\"Your-full-name\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"03/08/2020\" value=\"\" type=\"date\" name=\"Date\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Number of Seats\" value=\"\" type=\"number\" name=\"NumberofSeats\" />\n</p>\n<p><input aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Phone Number\" value=\"\" type=\"number\" name=\"your-number\" />\n</p>\n<p><input size=\"40\" aria-required=\"true\" aria-invalid=\"false\" placeholder=\"Email Address\" value=\"\" type=\"email\" name=\"your-email\" />\n</p>\n<p><input type=\"submit\" value=\"Make a Reservation\" />\n</p>\n</form>\n															<img width=\"134\" height=\"167\" src=\"https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2021/11/Group-149.png\" alt=\"\" loading=\"lazy\" />															\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\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>		\n			<iframe loading=\"lazy\"\n					src=\"https://maps.google.com/maps?q=Healthy%20Food%20Restaurant%2C%20Mangalam%20Puram%20Colony%2C%20Janaura%20Rd%2C%20Tursampur%2C%20I.E.T.%20Campus%2C%20Faizabad%2C%20Uttar%20Pradesh%20224001&#038;t=m&#038;z=10&#038;output=embed&#038;iwloc=near\"\n					title=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n					aria-label=\"Healthy Food Restaurant, Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\"\n			></iframe>\n			<h4>Planning To Visit ?</h4>		\n		<p>Visit to Healthy Food Restaurant with your Family and enjoy the delicacy of Indian Food.</p>		\n			<a href=\"#\">\n						Contact Us\n					</a>\n			<h4>Opening Time</h4>		\n		Working Days<p>7:00AM - 10:00PM</p>		\n			<style>/*! elementor - v3.16.0 - 09-10-2023 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#0c0d0e;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{flex-grow:0;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-con-inner>.elementor-widget-divider,.e-con>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow)}</style>		\n		Saturday<p>7:00AM - 10:00PM</p>		\n		Sunday<p>7:00AM - 10:00PM</p>		\n			<h4>Get In Touch</h4>		\n		<p>care@healthyfoodrestaurant.in</p>		\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						Instagram\n						<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>					</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>','Home','','inherit','closed','closed','','106-revision-v1','','','2023-10-14 06:52:20','2023-10-14 06:52:20','',106,'https://healthyfoodrestaurant.in/staging/3871/?p=4779',0,'revision','',0),(4780,2,'2023-10-14 06:55:50','2023-10-14 06:55:50','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.09539503909781599\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:54:38\"\n    },\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false,\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": true\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:55:50\"\n    }\n}','','','publish','closed','closed','','3abda75f-d045-45be-a60f-6d7a4e475206','','','2023-10-14 06:55:50','2023-10-14 06:55:50','',0,'https://healthyfoodrestaurant.in/staging/3871/?p=4780',0,'customize_changeset','',0),(4781,2,'2023-10-14 06:56:12','2023-10-14 06:56:12','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"contact@yourwebsite.com\",\n                                        \"link\": \"mailto:contact@yourwebsite.com\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"123-456-7890\",\n                                        \"link\": \"tel:123-456-7890\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:12\"\n    },\n    \"rishi::page_sidebar_layout\": {\n        \"value\": \"no-sidebar\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:12\"\n    }\n}','','','publish','closed','closed','','6a0cd8c5-f4d9-4a69-a910-429dfb0e8a59','','','2023-10-14 06:56:12','2023-10-14 06:56:12','',0,'https://healthyfoodrestaurant.in/staging/3871/6a0cd8c5-f4d9-4a69-a910-429dfb0e8a59/',0,'customize_changeset','',0),(4782,2,'2023-10-14 06:56:37','2023-10-14 06:56:37','{\n    \"rishi::page_sidebar_layout\": {\n        \"value\": \"centered\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:56:37\"\n    }\n}','','','publish','closed','closed','','7fb119f9-def8-4906-95d3-c74f40a2c0e3','','','2023-10-14 06:56:37','2023-10-14 06:56:37','',0,'https://healthyfoodrestaurant.in/staging/3871/7fb119f9-def8-4906-95d3-c74f40a2c0e3/',0,'customize_changeset','',0),(4783,2,'2023-10-14 06:57:05','2023-10-14 06:57:05','{\n    \"rishi::page_layout\": {\n        \"value\": \"content_boxed\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:57:05\"\n    }\n}','','','publish','closed','closed','','3acf65df-fe9d-4947-8f31-faaf39b8f1b1','','','2023-10-14 06:57:05','2023-10-14 06:57:05','',0,'https://healthyfoodrestaurant.in/staging/3871/3acf65df-fe9d-4947-8f31-faaf39b8f1b1/',0,'customize_changeset','',0),(4784,2,'2023-10-14 06:57:11','2023-10-14 06:57:11','{\n    \"rishi::page_layout_streched_ed\": {\n        \"value\": \"yes\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:57:11\"\n    }\n}','','','publish','closed','closed','','28e9a222-575d-4aef-851c-6b6ae0809411','','','2023-10-14 06:57:11','2023-10-14 06:57:11','',0,'https://healthyfoodrestaurant.in/staging/3871/28e9a222-575d-4aef-851c-6b6ae0809411/',0,'customize_changeset','',0),(4785,2,'2023-10-14 06:59:16','2023-10-14 06:59:16','https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/cropped-7776956.jpg','cropped-7776956.jpg','','inherit','open','closed','','cropped-7776956-jpg','','','2023-10-14 06:59:16','2023-10-14 06:59:16','',0,'https://healthyfoodrestaurant.in/staging/3871/wp-content/uploads/2023/09/cropped-7776956.jpg',0,'attachment','image/jpeg',0),(4786,2,'2023-10-14 06:59:25','2023-10-14 06:59:25','{\n    \"site_icon\": {\n        \"value\": 4785,\n        \"type\": \"option\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 06:59:25\"\n    }\n}','','','publish','closed','closed','','3e465b9c-6fbf-43bf-b0a2-a589cb2ec394','','','2023-10-14 06:59:25','2023-10-14 06:59:25','',0,'https://healthyfoodrestaurant.in/staging/3871/3e465b9c-6fbf-43bf-b0a2-a589cb2ec394/',0,'customize_changeset','',0),(4787,2,'2023-10-14 07:08:31','2023-10-14 07:08:31','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"care@healthyfoodrestaurant.in\",\n                                        \"link\": \"mailto:care@healthyfoodrestaurant.in\",\n                                        \"__id\": \"Co4AamBXHUquF7YtD2b6G\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"+ 91 9628-4444-58\",\n                                        \"link\": \"tel:+ 91 9628-4444-58\",\n                                        \"__id\": \"qvMQqubw-Yy7a2qR3gm_Y\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address:\",\n                                        \"content\": \"Street Name, NY 48734\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"yourwebsite.com\",\n                                        \"link\": \"https://yourwebsite.com\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:08:31\"\n    }\n}','','','publish','closed','closed','','29cb2e81-37ae-4844-800d-0a7e34953f58','','','2023-10-14 07:08:31','2023-10-14 07:08:31','',0,'https://healthyfoodrestaurant.in/staging/3871/?p=4787',0,'customize_changeset','',0),(4788,2,'2023-10-14 07:11:56','2023-10-14 07:11:56','{\n    \"rishi::footer_placements\": {\n        \"value\": {\n            \"0.5647751040525999\": \"update\",\n            \"0.01316682782663614\": \"update\",\n            \"0.4652917546371895\": \"update\",\n            \"0.5902537872139022\": \"update\",\n            \"0.4946048058250603\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [\n                                    \"widget-area-1\"\n                                ],\n                                [\n                                    \"widget-area-2\"\n                                ],\n                                [\n                                    \"contacts\"\n                                ],\n                                [\n                                    \"socials\"\n                                ]\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": {\n                        \"middle-row\": {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"f\",\n                                    \"1\": \"l\",\n                                    \"2\": \"e\",\n                                    \"3\": \"x\",\n                                    \"4\": \"-\",\n                                    \"5\": \"s\",\n                                    \"6\": \"t\",\n                                    \"7\": \"a\",\n                                    \"8\": \"r\",\n                                    \"9\": \"t\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerWidgetsTitleFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"1.75\",\n                                    \"letter-spacing\": \"0.4px\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerWidgetsFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"16px\",\n                                        \"tablet\": \"16px\",\n                                        \"mobile\": \"16px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": {\n                                        \"desktop\": \"1.5\",\n                                        \"tablet\": \"1.5\",\n                                        \"mobile\": \"1.5\",\n                                        \"__changed\": []\n                                    },\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"3_columns_layout\": {\n                                    \"desktop\": \"repeat(3, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                },\n                                \"footerItemsGap\": {\n                                    \"desktop\": \"30\",\n                                    \"tablet\": \"40\",\n                                    \"mobile\": \"40\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"desktop\": \"50px\",\n                                    \"tablet\": \"50px\",\n                                    \"mobile\": \"40px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowWidth\": \"fixed\",\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                },\n                                \"rowFontColor\": {\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor1)\"\n                                        },\n                                        \"link_initial\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"link_hover\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"4_columns_layout\": {\n                                    \"desktop\": \"repeat(4, 1fr)\",\n                                    \"tablet\": \"initial\",\n                                    \"mobile\": \"initial\",\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        \"bottom-row\": {\n                            \"id\": \"bottom-row\",\n                            \"values\": {\n                                \"footer_row_vertical_alignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": []\n                                },\n                                \"rowTopBottomSpacing\": {\n                                    \"mobile\": \"15px\",\n                                    \"tablet\": \"25px\",\n                                    \"desktop\": \"30px\",\n                                    \"__changed\": []\n                                },\n                                \"footerRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor8)\"\n                                        }\n                                    }\n                                }\n                            }\n                        },\n                        \"menu\": {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"rishi__cb_customizer_location\",\n                                \"footerMenuItemsSpacing\": {\n                                    \"desktop\": \"25\",\n                                    \"tablet\": \"25\",\n                                    \"mobile\": \"25\",\n                                    \"__changed\": []\n                                },\n                                \"footerMenuVerticalAlignment\": {\n                                    \"0\": \"center\",\n                                    \"1\": \"center\",\n                                    \"2\": \"center\",\n                                    \"3\": \"center\",\n                                    \"4\": \"center\",\n                                    \"5\": \"center\",\n                                    \"6\": \"center\",\n                                    \"7\": \"center\",\n                                    \"8\": \"center\",\n                                    \"9\": \"center\",\n                                    \"10\": \"center\",\n                                    \"11\": \"center\",\n                                    \"12\": \"center\",\n                                    \"13\": \"center\",\n                                    \"14\": \"center\",\n                                    \"15\": \"center\",\n                                    \"desktop\": \"center\",\n                                    \"tablet\": \"center\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"stretch_menu\": \"no\",\n                                \"footerMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"footerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"14px\",\n                                        \"tablet\": \"14px\",\n                                        \"mobile\": \"14px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"1.3\",\n                                    \"letter-spacing\": \"0.3px\",\n                                    \"text-transform\": \"normal\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"footerMenuAlignment\": {\n                                    \"0\": \"flex-end\",\n                                    \"1\": \"flex-end\",\n                                    \"2\": \"flex-end\",\n                                    \"3\": \"flex-end\",\n                                    \"4\": \"flex-end\",\n                                    \"5\": \"flex-end\",\n                                    \"6\": \"flex-end\",\n                                    \"7\": \"flex-end\",\n                                    \"8\": \"flex-end\",\n                                    \"9\": \"flex-end\",\n                                    \"desktop\": \"flex-start\",\n                                    \"tablet\": \"flex-end\",\n                                    \"mobile\": \"center\",\n                                    \"__changed\": [\n                                        \"tablet\",\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"px\",\n                                        \"bottom\": \"px\",\n                                        \"left\": \"px\",\n                                        \"right\": \"px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": [\n                                        \"mobile\"\n                                    ]\n                                },\n                                \"footer_hide_menu_one\": \"\"\n                            }\n                        },\n                        \"widget-area-1\": {\n                            \"id\": \"widget-area-1\",\n                            \"values\": {\n                                \"footer_hide_widget_one\": \"\"\n                            }\n                        },\n                        \"copyright\": {\n                            \"id\": \"copyright\",\n                            \"values\": {\n                                \"copyright_text\": \"<p>Copyright \\u00a9 {current_year} {site_title} - Designed &amp; Developed by <a href=\\\"http://whettle.com\\\">Whettle Services</a></p>\"\n                            }\n                        },\n                        \"socials\": {\n                            \"id\": \"socials\",\n                            \"values\": {\n                                \"footer_socials\": [\n                                    {\n                                        \"id\": \"facebook\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"twitter\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"instagram\",\n                                        \"enabled\": true\n                                    },\n                                    {\n                                        \"id\": \"youtube\",\n                                        \"enabled\": true,\n                                        \"__id\": \"6DC-FGDnDBqDcZt-Sa7P2\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"__id\": \"5I5oNfQVev3oYX2Ig2grM\"\n                                    },\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"__id\": \"9f_RBJ_p7Lru1Tuv3WYRi\"\n                                    },\n                                    {\n                                        \"id\": \"whatsapp\",\n                                        \"enabled\": true,\n                                        \"__id\": \"CmkZ1a7eqp6yo7sjAlgfJ\"\n                                    }\n                                ]\n                            }\n                        },\n                        \"contacts\": {\n                            \"id\": \"contacts\",\n                            \"values\": {\n                                \"contact_items\": [\n                                    {\n                                        \"id\": \"email\",\n                                        \"enabled\": true,\n                                        \"title\": \"Email:\",\n                                        \"content\": \"care@healthyfoodrestaurant.in\",\n                                        \"link\": \"mailto:care@healthyfoodrestaurant.in\",\n                                        \"__id\": \"Co4AamBXHUquF7YtD2b6G\"\n                                    },\n                                    {\n                                        \"id\": \"phone\",\n                                        \"enabled\": true,\n                                        \"title\": \"Phone:\",\n                                        \"content\": \"+ 91 9628-4444-58\",\n                                        \"link\": \"tel:+ 91 9628-4444-58\",\n                                        \"__id\": \"qvMQqubw-Yy7a2qR3gm_Y\"\n                                    },\n                                    {\n                                        \"id\": \"address\",\n                                        \"enabled\": true,\n                                        \"title\": \"Address: \",\n                                        \"content\": \"Mangalam Puram Colony, Janaura Rd, Tursampur, I.E.T. Campus, Faizabad, Uttar Pradesh 224001\",\n                                        \"link\": \"\",\n                                        \"__id\": \"mDETyiDiK9b4SxzYSQN1o\"\n                                    },\n                                    {\n                                        \"id\": \"website\",\n                                        \"enabled\": true,\n                                        \"title\": \"Website:\",\n                                        \"content\": \"Healthy Food Restaurant\",\n                                        \"link\": \"https://healthyfoodrestaurant.in/staging/3871\",\n                                        \"__id\": \"J4rbSfxp9FpMboFilcGPR\"\n                                    }\n                                ]\n                            }\n                        }\n                    },\n                    \"settings\": []\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"columns\",\n                    \"rows\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"columns\": [\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"columns\": [\n                                [],\n                                [],\n                                [],\n                                []\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"columns\": [\n                                [\n                                    \"copyright\"\n                                ]\n                            ]\n                        }\n                    ],\n                    \"items\": [],\n                    \"settings\": []\n                }\n            ],\n            \"__should_refresh_item__\": \"contacts:contact_items\",\n            \"__forced_static_footer__\": \"type-1\",\n            \"__should_refresh__\": false\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:11:56\"\n    }\n}','','','publish','closed','closed','','17f48993-1308-4235-a5da-e35d866da64f','','','2023-10-14 07:11:56','2023-10-14 07:11:56','',0,'https://healthyfoodrestaurant.in/staging/3871/17f48993-1308-4235-a5da-e35d866da64f/',0,'customize_changeset','',0),(4789,2,'2023-10-14 07:18:06','2023-10-14 07:18:06','{\n    \"rishi::header_placements\": {\n        \"value\": {\n            \"__should_refresh__\": true,\n            \"0.6890474456357631\": \"update\",\n            \"current_section\": \"type-1\",\n            \"sections\": [\n                {\n                    \"id\": \"type-1\",\n                    \"mode\": \"placements\",\n                    \"items\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"ce4e805faa3280a8ba086802865e5b77\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"50\",\n                                    \"tablet\": \"50\",\n                                    \"desktop\": \"50\"\n                                },\n                                \"has_sticky_shrink\": \"no\",\n                                \"stickyHeaderRowShrink\": \"70\",\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"#f9f9f9\"\n                                        }\n                                    }\n                                },\n                                \"f9f0f0275ead20cae998602e21e609ae\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"e8f36378c01a3d5b1c68e9e906666b87\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"f2dfc716141372e5a9d29cd1830ff6f0\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"values\": {\n                                \"headerRowWidth\": \"fixed\",\n                                \"c0b5c96fe02aaf6a17a4bfe3a2162084\": \"\",\n                                \"headerRowHeight\": {\n                                    \"mobile\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"desktop\": \"106\",\n                                    \"__changed\": []\n                                },\n                                \"has_sticky_shrink\": \"yes\",\n                                \"stickyHeaderRowShrink\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"70\",\n                                    \"mobile\": \"70\",\n                                    \"__changed\": []\n                                },\n                                \"headerRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"rgba(32, 32, 32, 0.5)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowBackground\": {\n                                    \"background_type\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_pattern\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_image\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"gradient\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_repeat\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_size\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"background_attachment\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"patternColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"background_type\": \"color\",\n                                        \"background_pattern\": \"type-1\",\n                                        \"background_image\": {\n                                            \"attachment_id\": null,\n                                            \"x\": \"0\",\n                                            \"y\": \"0\"\n                                        },\n                                        \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                        \"background_repeat\": \"no-repeat\",\n                                        \"background_size\": \"auto\",\n                                        \"background_attachment\": \"scroll\",\n                                        \"patternColor\": {\n                                            \"default\": {\n                                                \"color\": \"#e5e7ea\"\n                                            }\n                                        },\n                                        \"overlayColor\": {\n                                            \"default\": {\n                                                \"color\": \"CT_CSS_SKIP_RULE\"\n                                            }\n                                        },\n                                        \"backgroundColor\": {\n                                            \"default\": {\n                                                \"color\": \"var(--paletteColor2)\"\n                                            }\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"9acede3891f2906b27e6c47c20c43ff5\": \"\",\n                                \"headerRowTopBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"stickyHeaderRowTopBorder\": {\n                                    \"desktop\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"width\": \"1\",\n                                        \"style\": \"none\",\n                                        \"color\": {\n                                            \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerRowTopBorderFullWidth\": \"no\",\n                                \"497fdf608fec3010a53a42fb5039fa49\": \"\",\n                                \"headerRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.2)\"\n                                    }\n                                },\n                                \"transparentHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderRowBottomBorder\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"none\",\n                                    \"color\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerRowBottomBorderFullWidth\": \"no\",\n                                \"855cd25f2d641a029e0c664cf171dfb9\": \"\",\n                                \"headerRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"transparentHeaderRowShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"rgba(44,62,80,0.05)\"\n                                    }\n                                },\n                                \"stickyHeaderRowShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"6\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"3\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(15, 25, 77, 0.05)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"fec654ccfac24aff01daa7cfc019acc2\": \"\",\n                                \"header_menu_type\": \"type-1\",\n                                \"menu_indicator_effect\": \"default\",\n                                \"headerMenuItemsSpacing\": \"25\",\n                                \"headerMenuItemsHeight\": \"100\",\n                                \"stretch_menu\": \"no\",\n                                \"headerMenuFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"2.25\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"uppercase\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"menuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"transparentMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover-type-3\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"activeIndicatorbackgroundColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"menuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyMenuIndicatorColor\": {\n                                    \"active\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerMenuMargin\": {\n                                    \"top\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"auto\",\n                                        \"bottom\": \"auto\",\n                                        \"left\": \"px\",\n                                        \"right\": \"12px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"3c159376356b4fcfe171bdcb5546aa1d\": \"\",\n                                \"dropdown_items_type\": \"simple\",\n                                \"dropdownItemsSpacing\": \"15\",\n                                \"2b6f3befb82bf78612fc57ea14a9a3ba\": \"\",\n                                \"dropdown_animation\": \"type-1\",\n                                \"dropdownTopOffset\": \"15\",\n                                \"dropdownMenuWidth\": \"210\",\n                                \"headerDropdownFont\": {\n                                    \"family\": \"Poppins\",\n                                    \"variation\": \"n4\",\n                                    \"size\": \"16px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"headerDropdownFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"headerDropdownBackground\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerDropdownDivider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"dashed\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"headerDropdownShadow\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"1\",\n                                    \"color\": {\n                                        \"color\": \"rgba(41, 51, 61, 0.1)\"\n                                    }\n                                },\n                                \"headerDropdownRadius\": {\n                                    \"top\": \"0px\",\n                                    \"bottom\": \"2px\",\n                                    \"left\": \"2px\",\n                                    \"right\": \"0px\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"button\",\n                            \"values\": {\n                                \"header_button_type\": \"type-1\",\n                                \"header_button_size\": \"medium\",\n                                \"header_button_text\": \"Make a Reservation\",\n                                \"header_button_link\": \"#\",\n                                \"header_button_target\": \"no\",\n                                \"header_button_minwidth\": \"50\",\n                                \"header_button_ed_nofollow\": \"no\",\n                                \"header_button_ed_sponsored\": \"no\",\n                                \"header_button_ed_download\": \"no\",\n                                \"button_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"837cad4c11f14126c672cf2342821e87\": \"\",\n                                \"visibility\": {\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"headerButtonFontColor\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"default_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"hover_2\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        },\n                                        \"default_2\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover_2\": {\n                                            \"color\": \"var(--paletteColor2)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonFontColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"default_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover_2\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"headerButtonForeground\": {\n                                    \"default\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"hover\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor3)\"\n                                        },\n                                        \"hover\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"transparentHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickyHeaderButtonForeground\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"header_button_border_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor5)\"\n                                    }\n                                },\n                                \"dfcfaa29089a19dc3b77cfb4a37f2263\": \"\",\n                                \"headerCTAShadow\": {\n                                    \"inherit\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"blur\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"spread\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"v_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"h_offset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"inset\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"enable\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"color\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"var(--paletteColor7)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"20\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"10\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(255, 248, 247, 0)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"headerCTAShadowHover\": {\n                                    \"inherit\": \"\",\n                                    \"blur\": \"20\",\n                                    \"spread\": \"0\",\n                                    \"v_offset\": \"10\",\n                                    \"h_offset\": \"0\",\n                                    \"inset\": \"\",\n                                    \"enable\": \"\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor7)\"\n                                    }\n                                },\n                                \"headerCtaRadius\": {\n                                    \"desktop\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"5px\",\n                                        \"bottom\": \"5px\",\n                                        \"left\": \"5px\",\n                                        \"right\": \"5px\",\n                                        \"linked\": \"1\"\n                                    },\n                                    \"__changed\": []\n                                },\n                                \"headerCtaMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"\",\n                                    \"right\": \"\",\n                                    \"linked\": \"1\"\n                                },\n                                \"headerCtaPadding\": {\n                                    \"top\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"bottom\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"left\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"right\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"linked\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"desktop\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"tablet\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"mobile\": {\n                                        \"top\": \"14px\",\n                                        \"bottom\": \"14px\",\n                                        \"left\": \"35px\",\n                                        \"right\": \"35px\",\n                                        \"linked\": \"\"\n                                    },\n                                    \"__changed\": []\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"logo\",\n                            \"values\": {\n                                \"custom_logo\": {\n                                    \"desktop\": 4758,\n                                    \"tablet\": 4758,\n                                    \"mobile\": 4758,\n                                    \"__changed\": []\n                                },\n                                \"logo_type\": \"logo-title\",\n                                \"logo_title_layout\": \"logotitle\",\n                                \"logo_title_tagline_layout\": \"logotitletagline\",\n                                \"transparent_logo\": \"\",\n                                \"sticky_logo\": {\n                                    \"desktop\": \"\",\n                                    \"tablet\": \"\",\n                                    \"mobile\": \"\",\n                                    \"__changed\": []\n                                },\n                                \"21f3057a7a013df71cd8175327b337cd\": \"\",\n                                \"logoMaxWidth\": {\n                                    \"desktop\": \"70\",\n                                    \"tablet\": \"66\",\n                                    \"mobile\": \"56\",\n                                    \"__changed\": [\n                                        \"mobile\",\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"0145e0cb5fd8a597351025eba8e664aa\": \"\",\n                                \"has_sticky_logo_shrink\": \"yes\",\n                                \"sticky_logo_shrink\": {\n                                    \"desktop\": \"74\",\n                                    \"tablet\": \"74\",\n                                    \"mobile\": \"74\",\n                                    \"__changed\": []\n                                },\n                                \"34ad8ad7eff6bce87d01e608a7e44c5b\": \"\",\n                                \"has_site_title\": \"yes\",\n                                \"blogname\": \"Healthy Food Restaurant \",\n                                \"blogname_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"070ee8e9689bbc2db20c1ccbbc4669d6\": \"\",\n                                \"has_tagline\": \"yes\",\n                                \"blogdescription\": \"\",\n                                \"blogdescription_visibility\": {\n                                    \"desktop\": \"1\",\n                                    \"tablet\": \"1\",\n                                    \"mobile\": \"1\"\n                                },\n                                \"5a6023c00116e785f2b871bc580bd03d\": \"\",\n                                \"logo_position\": \"left\",\n                                \"b1279d96e8f9d2a8cfaa2843d39f3b29\": \"\",\n                                \"siteTitle\": {\n                                    \"family\": \"Nunito Sans\",\n                                    \"variation\": \"n7\",\n                                    \"size\": {\n                                        \"desktop\": \"0px\",\n                                        \"tablet\": \"0px\",\n                                        \"mobile\": \"0px\",\n                                        \"__changed\": []\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"0em\",\n                                    \"text-transform\": \"none\",\n                                    \"text-decoration\": \"none\"\n                                },\n                                \"siteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"transparentSiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"stickySiteTitleColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"e790fd23c5ff32f238b30c92ea5de072\": \"\",\n                                \"siteTagline\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n5\",\n                                    \"size\": \"13px\",\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"siteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    }\n                                },\n                                \"transparentSiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"stickySiteTaglineColor\": {\n                                    \"default\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                },\n                                \"1f572f4169a289787add52a52c081d2c\": \"\",\n                                \"headerLogoMargin\": {\n                                    \"top\": \"0\",\n                                    \"bottom\": \"0\",\n                                    \"left\": \"0\",\n                                    \"right\": \"0\",\n                                    \"linked\": \"\"\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"values\": {\n                                \"offcanvas_behavior\": \"panel\",\n                                \"side_panel_position\": \"right\",\n                                \"side_panel_width\": {\n                                    \"desktop\": \"500px\",\n                                    \"tablet\": \"65vw\",\n                                    \"mobile\": \"90vw\"\n                                },\n                                \"025a7005715a2df90eba3899ce0f0544\": \"\",\n                                \"offcanvas_content_vertical_alignment\": \"flex-start\",\n                                \"offcanvasContentAlignment\": \"flex-start\",\n                                \"offcanvasBackground\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"var(--paletteColor5)\"\n                                        }\n                                    }\n                                },\n                                \"offcanvasBackdrop\": {\n                                    \"background_type\": \"color\",\n                                    \"background_pattern\": \"type-1\",\n                                    \"background_image\": {\n                                        \"attachment_id\": null,\n                                        \"x\": \"0\",\n                                        \"y\": \"0\"\n                                    },\n                                    \"gradient\": \"linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%)\",\n                                    \"background_repeat\": \"no-repeat\",\n                                    \"background_size\": \"auto\",\n                                    \"background_attachment\": \"scroll\",\n                                    \"patternColor\": {\n                                        \"default\": {\n                                            \"color\": \"#e5e7ea\"\n                                        }\n                                    },\n                                    \"overlayColor\": {\n                                        \"default\": {\n                                            \"color\": \"CT_CSS_SKIP_RULE\"\n                                        }\n                                    },\n                                    \"backgroundColor\": {\n                                        \"default\": {\n                                            \"color\": \"rgba(255,255,255,0)\"\n                                        }\n                                    }\n                                },\n                                \"headerPanelShadow\": {\n                                    \"desktop\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"1\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"tablet\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"mobile\": {\n                                        \"inherit\": \"\",\n                                        \"blur\": \"70\",\n                                        \"spread\": \"0\",\n                                        \"v_offset\": \"0\",\n                                        \"h_offset\": \"0\",\n                                        \"inset\": \"\",\n                                        \"enable\": \"\",\n                                        \"color\": {\n                                            \"color\": \"rgba(0, 0, 0, 0.35)\"\n                                        }\n                                    },\n                                    \"__changed\": [\n                                        \"tablet\"\n                                    ]\n                                },\n                                \"81b63343b25444a35fb394efdc38f722\": \"\",\n                                \"menu_close_button_color\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor2)\"\n                                    }\n                                },\n                                \"menu_close_button_shape_color\": {\n                                    \"default\": {\n                                        \"color\": \"transparent\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"CT_CSS_SKIP_RULEDEFAULT\"\n                                    }\n                                }\n                            }\n                        },\n                        {\n                            \"id\": \"mobile-menu\",\n                            \"values\": {\n                                \"menu\": \"menu-1\",\n                                \"mobile_menu_type\": \"type-1\",\n                                \"mobileMenuFont\": {\n                                    \"family\": \"Default\",\n                                    \"variation\": \"n4\",\n                                    \"size\": {\n                                        \"desktop\": \"30px\",\n                                        \"tablet\": \"20px\",\n                                        \"mobile\": \"16px\"\n                                    },\n                                    \"line-height\": \"CT_CSS_SKIP_RULE\",\n                                    \"letter-spacing\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-transform\": \"CT_CSS_SKIP_RULE\",\n                                    \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n                                },\n                                \"mobileMenuColor\": {\n                                    \"default\": {\n                                        \"color\": \"var(--paletteColor1)\"\n                                    },\n                                    \"hover\": {\n                                        \"color\": \"var(--paletteColor3)\"\n                                    }\n                                },\n                                \"mobile_menu_child_size\": \"14px\",\n                                \"mobile_menu_divider\": {\n                                    \"width\": \"1\",\n                                    \"style\": \"solid\",\n                                    \"color\": {\n                                        \"color\": \"var(--paletteColor6)\"\n                                    }\n                                },\n                                \"fd6639b6cbe587c9a823889d282d64d9\": \"\",\n                                \"mobileMenuMargin\": {\n                                    \"top\": \"\",\n                                    \"bottom\": \"\",\n                                    \"left\": \"auto\",\n                                    \"right\": \"auto\",\n                                    \"linked\": \"1\"\n                                }\n                            }\n                        }\n                    ],\n                    \"settings\": {\n                        \"has_sticky_header\": \"yes\",\n                        \"sticky_rows\": \"middle\",\n                        \"sticky_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f17add1b53a8fb75822d4d77e206d6b6\": \"\",\n                        \"has_transparent_header\": \"yes\",\n                        \"transparent_conditions\": [\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"106\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"115\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"749\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"751\"\n                                }\n                            },\n                            {\n                                \"type\": \"include\",\n                                \"rule\": \"page_ids\",\n                                \"payload\": {\n                                    \"post_id\": \"753\"\n                                }\n                            }\n                        ],\n                        \"transparent_behaviour\": {\n                            \"desktop\": \"1\",\n                            \"mobile\": \"1\"\n                        },\n                        \"f4efdc54c3ec194f78be04623ad1b1ff\": \"\",\n                        \"27630eaf554f92c7d56b6effa92e82cf\": \"\",\n                        \"70f3e4bb3e86db2de148fdd310aa578e\": \"\",\n                        \"a4a09322a41137af624d2231b37f72ef\": \"\"\n                    },\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"menu\",\n                                        \"button\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\",\n                                        \"button\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"type-2\",\n                    \"mode\": \"placements\",\n                    \"items\": [],\n                    \"settings\": [],\n                    \"desktop\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"socials\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"menu\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                }\n                            ]\n                        }\n                    ],\n                    \"mobile\": [\n                        {\n                            \"id\": \"top-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"middle-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"search\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": [\n                                        \"logo\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": [\n                                        \"trigger\"\n                                    ]\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"bottom-row\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"start-middle\",\n                                    \"items\": []\n                                },\n                                {\n                                    \"id\": \"end-middle\",\n                                    \"items\": []\n                                }\n                            ]\n                        },\n                        {\n                            \"id\": \"offcanvas\",\n                            \"placements\": [\n                                {\n                                    \"id\": \"start\",\n                                    \"items\": [\n                                        \"mobile-menu\"\n                                    ]\n                                }\n                            ]\n                        }\n                    ]\n                }\n            ],\n            \"__should_refresh_item__\": \"logo:logoMaxWidth\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:06\"\n    },\n    \"rishi::rootTypography\": {\n        \"value\": {\n            \"family\": \"Caudex\",\n            \"variation\": \"n4\",\n            \"size\": {\n                \"desktop\": \"18px\",\n                \"tablet\": \"18px\",\n                \"mobile\": \"16px\",\n                \"__changed\": [\n                    \"mobile\"\n                ]\n            },\n            \"line-height\": \"1.75\",\n            \"letter-spacing\": {\n                \"desktop\": \"0.25px\",\n                \"tablet\": \"0.25px\",\n                \"mobile\": \"0.25px\",\n                \"__changed\": []\n            },\n            \"text-transform\": \"CT_CSS_SKIP_RULE\",\n            \"text-decoration\": \"CT_CSS_SKIP_RULE\"\n        },\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:06\"\n    }\n}','','','publish','closed','closed','','80691eca-47a0-484f-92f9-4aebfee6b7d8','','','2023-10-14 07:18:06','2023-10-14 07:18:06','',0,'https://healthyfoodrestaurant.in/staging/3871/80691eca-47a0-484f-92f9-4aebfee6b7d8/',0,'customize_changeset','',0),(4790,2,'2023-10-14 07:18:36','2023-10-14 07:18:36','{\n    \"rishi::layout\": {\n        \"value\": \"content_boxed\",\n        \"type\": \"theme_mod\",\n        \"user_id\": 2,\n        \"date_modified_gmt\": \"2023-10-14 07:18:36\"\n    }\n}','','','publish','closed','closed','','7b6823a4-5b9f-4f08-b7ae-21c2b7e8e6d0','','','2023-10-14 07:18:36','2023-10-14 07:18:36','',0,'https://healthyfoodrestaurant.in/staging/3871/7b6823a4-5b9f-4f08-b7ae-21c2b7e8e6d0/',0,'customize_changeset','',0);
/*!40000 ALTER TABLE `staging_ajj_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_term_relationships`
--

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

--
-- Dumping data for table `staging_ajj_term_relationships`
--

LOCK TABLES `staging_ajj_term_relationships` WRITE;
/*!40000 ALTER TABLE `staging_ajj_term_relationships` DISABLE KEYS */;
INSERT INTO `staging_ajj_term_relationships` VALUES (1,1,0),(85,7,0),(103,7,0),(120,9,0),(121,9,0),(755,9,0),(756,9,0),(757,9,0),(1794,3,0),(1794,6,0),(1795,3,0),(1795,6,0),(3041,3,0),(3041,6,0),(3046,3,0),(3046,6,0),(3049,3,0),(3049,6,0),(3059,3,0),(3059,6,0),(3129,8,0),(3131,8,0),(3132,8,0),(3134,8,0);
/*!40000 ALTER TABLE `staging_ajj_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_term_taxonomy`
--

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

--
-- Dumping data for table `staging_ajj_term_taxonomy`
--

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

--
-- Table structure for table `staging_ajj_termmeta`
--

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

--
-- Dumping data for table `staging_ajj_termmeta`
--

LOCK TABLES `staging_ajj_termmeta` WRITE;
/*!40000 ALTER TABLE `staging_ajj_termmeta` DISABLE KEYS */;
INSERT INTO `staging_ajj_termmeta` VALUES (1,2,'_demo_importer_plus_imported_term','1'),(2,3,'_demo_importer_plus_imported_term','1'),(3,4,'_demo_importer_plus_imported_term','1'),(4,5,'_demo_importer_plus_imported_term','1'),(5,6,'ba_category_image_id',''),(6,6,'_demo_importer_plus_imported_term','1'),(7,7,'_demo_importer_plus_imported_term','1'),(8,8,'_demo_importer_plus_imported_term','1'),(9,9,'_demo_importer_plus_imported_term','1');
/*!40000 ALTER TABLE `staging_ajj_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_terms`
--

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

--
-- Dumping data for table `staging_ajj_terms`
--

LOCK TABLES `staging_ajj_terms` WRITE;
/*!40000 ALTER TABLE `staging_ajj_terms` DISABLE KEYS */;
INSERT INTO `staging_ajj_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'Business, Strategy','business-strategy',0),(3,'Healthy','healthy',0),(4,'Organization','organization',0),(5,'Retail','retail',0),(6,'Tasty','tasty',0),(7,'page','page',0),(8,'footer menu','footer-menu',0),(9,'Menu 1','menu-1',0);
/*!40000 ALTER TABLE `staging_ajj_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_usermeta`
--

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

--
-- Dumping data for table `staging_ajj_usermeta`
--

LOCK TABLES `staging_ajj_usermeta` WRITE;
/*!40000 ALTER TABLE `staging_ajj_usermeta` DISABLE KEYS */;
INSERT INTO `staging_ajj_usermeta` VALUES (1,1,'nickname','arpitkmaurya1'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'staging_ajj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'staging_ajj_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'jetpack_tracks_anon_id','jetpack:hddC6Lfu0eI4J2T7WTBsgpyr'),(17,1,'session_tokens','a:1:{s:64:\"5586ab03d1db1bf964b1dd5d50b265c52143ffc099a52c78cad57d9c699afb65\";a:4:{s:10:\"expiration\";i:1701140930;s:2:\"ip\";s:14:\"171.76.253.201\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36\";s:5:\"login\";i:1700968130;}}'),(18,1,'staging_ajj_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:9;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:13:\"arpitkmaurya1\";s:9:\"user_pass\";s:34:\"$P$Bnrmnq7pL0b84mrMbzJi79/lIVMa/y0\";s:13:\"user_nicename\";s:13:\"arpitkmaurya1\";s:10:\"user_email\";s:28:\"arpitkmaurya1@protonmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2023-09-07 01:48:25\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"arpitkmaurya1\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:16:\"staging_ajj_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:63:{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:20:\"wpseo_manage_options\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8000000000000000444089209850062616169452667236328125;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(19,2,'nickname','healthyfoodrestaurant'),(20,2,'first_name',''),(21,2,'last_name',''),(22,2,'description',''),(23,2,'rich_editing','true'),(24,2,'syntax_highlighting','true'),(25,2,'comment_shortcuts','false'),(26,2,'admin_color','fresh'),(27,2,'use_ssl','0'),(28,2,'show_admin_bar_front','true'),(29,2,'locale',''),(30,2,'staging_ajj_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(31,2,'staging_ajj_user_level','10'),(32,2,'dismissed_wp_pointers',''),(34,1,'staging_ajj_dashboard_quick_press_last_post_id','6'),(35,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"27.60.100.0\";}'),(36,2,'session_tokens','a:1:{s:64:\"0f7b5fabe45b0cd32b0f7f1d4e734ccf7c8aae37fa6e969eb1f56adf10494b52\";a:4:{s:10:\"expiration\";i:1698114365;s:2:\"ip\";s:14:\"42.105.211.242\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36\";s:5:\"login\";i:1696904765;}}'),(38,2,'staging_ajj_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:\"2023-09-15T02:09:57.076Z\";s:22:\"core/customize-widgets\";a:1:{s:12:\"welcomeGuide\";b:0;}}'),(40,2,'elementor_introduction','a:1:{s:27:\"ai-get-started-announcement\";b:1;}'),(41,2,'announcements_user_counter','1'),(42,2,'staging_ajj_user-settings','editor=tinymce&libraryContent=browse'),(43,2,'staging_ajj_user-settings-time','1694139647'),(44,2,'nfd_sp_last_check','1694743828'),(45,2,'staging_ajj_dashboard_quick_press_last_post_id','4767'),(46,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"42.105.213.0\";}'),(47,2,'jetpack_tracks_anon_id','jetpack:yBzISlR8ai7PJHfcbhOJMw+3');
/*!40000 ALTER TABLE `staging_ajj_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_users`
--

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

--
-- Dumping data for table `staging_ajj_users`
--

LOCK TABLES `staging_ajj_users` WRITE;
/*!40000 ALTER TABLE `staging_ajj_users` DISABLE KEYS */;
INSERT INTO `staging_ajj_users` VALUES (1,'arpitkmaurya1','$P$Bnrmnq7pL0b84mrMbzJi79/lIVMa/y0','arpitkmaurya1','arpitkmaurya1@protonmail.com','','2023-09-07 01:48:25','',0,'arpitkmaurya1'),(2,'healthyfoodrestaurant','$P$B.YH1SNPGoSHRLYiTowL8El6FGjjIq.','healthyfoodrestaurant','care@healthyfoodrestaurant.in','http://healthyfoodrestaurant.in','2023-09-07 01:54:30','1694051670:$P$B84a1lKx6EA46sIfZXE1RWAUSZh5qt.',0,'healthyfoodrestaurant');
/*!40000 ALTER TABLE `staging_ajj_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_yoast_indexable`
--

DROP TABLE IF EXISTS `staging_ajj_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_520_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_520_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_520_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_520_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_520_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_520_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_520_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  `version` int(11) DEFAULT '1',
  `object_last_modified` datetime DEFAULT NULL,
  `object_published_at` datetime DEFAULT NULL,
  `inclusive_language_score` int(3) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`),
  KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_yoast_indexable`
--

LOCK TABLES `staging_ajj_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `staging_ajj_yoast_indexable` DISABLE KEYS */;
INSERT INTO `staging_ajj_yoast_indexable` VALUES (1,'https://healthyfoodrestaurant.in/','33:629228ba52894ac3cdbc99ce97db1b84',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,NULL,NULL,'2023-09-07 01:48:44','2023-09-06 20:18:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-09-07 01:48:25','2023-09-07 01:48:25',NULL),(2,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,'Error 404: Page not found',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2023-09-07 01:48:56','2023-09-06 20:18:56',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL);
/*!40000 ALTER TABLE `staging_ajj_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `staging_ajj_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL,
  `ancestor_id` int(11) unsigned NOT NULL,
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_yoast_indexable_hierarchy`
--

LOCK TABLES `staging_ajj_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `staging_ajj_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `staging_ajj_yoast_indexable_hierarchy` VALUES (1,0,0,1);
/*!40000 ALTER TABLE `staging_ajj_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_yoast_migrations`
--

DROP TABLE IF EXISTS `staging_ajj_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `staging_ajj_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_yoast_migrations`
--

LOCK TABLES `staging_ajj_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `staging_ajj_yoast_migrations` DISABLE KEYS */;
INSERT INTO `staging_ajj_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836');
/*!40000 ALTER TABLE `staging_ajj_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `staging_ajj_yoast_primary_term`
--

DROP TABLE IF EXISTS `staging_ajj_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_520_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_yoast_primary_term`
--

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

--
-- Table structure for table `staging_ajj_yoast_seo_links`
--

DROP TABLE IF EXISTS `staging_ajj_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `staging_ajj_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) DEFAULT NULL,
  `post_id` bigint(20) unsigned DEFAULT NULL,
  `target_post_id` bigint(20) unsigned DEFAULT NULL,
  `type` varchar(8) DEFAULT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) DEFAULT NULL,
  `region` varchar(32) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `staging_ajj_yoast_seo_links`
--

LOCK TABLES `staging_ajj_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `staging_ajj_yoast_seo_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `staging_ajj_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

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

-- Dump completed on 2024-03-29 23:14:36
